9 lines
176 B
Lua
9 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
|
|
})
|