Rename /vote_next to /vote
This commit is contained in:
parent
6bde327624
commit
a66745923c
1 changed files with 38 additions and 29 deletions
|
@ -6,11 +6,7 @@ function ctf_match.register_on_skip_map(func)
|
|||
table.insert(ctf_match.registered_on_skip_map, func)
|
||||
end
|
||||
|
||||
minetest.register_chatcommand("vote_next", {
|
||||
privs = {
|
||||
interact = true
|
||||
},
|
||||
func = function(name, param)
|
||||
function ctf_match.vote_next(name, params)
|
||||
vote.new_vote(name, {
|
||||
description = "Skip to next match",
|
||||
help = "/yes, /no or /abstain",
|
||||
|
@ -37,5 +33,18 @@ minetest.register_chatcommand("vote_next", {
|
|||
self.description .. "'")
|
||||
end
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_chatcommand("vote", {
|
||||
privs = {
|
||||
interact = true
|
||||
},
|
||||
func = ctf_match.vote_next
|
||||
})
|
||||
|
||||
minetest.register_on_chat_message(function(name, msg)
|
||||
if msg == "/vote_next" then
|
||||
ctf_match.vote_next(name)
|
||||
return true
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in a new issue