Add vote admin
This commit is contained in:
parent
08bc2ab8a2
commit
d27e364fb4
15
init.lua
15
init.lua
@ -139,6 +139,21 @@ function vote.vote(voteset, name, value)
|
||||
vote.check_vote(voteset)
|
||||
end
|
||||
|
||||
minetest.register_privilege("vote_admin", {
|
||||
description = "Allows a player to manage running votes."
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("vote_clear", {
|
||||
privs = {
|
||||
vote_admin = true,
|
||||
},
|
||||
func = function(name, params)
|
||||
vote.active = {}
|
||||
vote.queue = {}
|
||||
vote.update_all_hud()
|
||||
end
|
||||
})
|
||||
|
||||
local hudkit = dofile(minetest.get_modpath("vote") .. "/hudkit.lua")
|
||||
vote.hud = hudkit()
|
||||
function vote.update_hud(player)
|
||||
|
Loading…
Reference in New Issue
Block a user