capturetheflag/mods/ctf_match/chat.lua

10 lines
176 B
Lua
Raw Normal View History

2015-07-17 17:10:17 +00:00
minetest.register_chatcommand("ctf_next", {
description = "Skip to the next match",
privs = {
ctf_admin = true
},
func = function(name, param)
ctf_match.next()
end
})