capturetheflag/mods/ctf_match/chat.lua
2015-07-17 18:11:27 +01:00

10 lines
176 B
Lua

minetest.register_chatcommand("ctf_next", {
description = "Skip to the next match",
privs = {
ctf_admin = true
},
func = function(name, param)
ctf_match.next()
end
})