This commit is contained in:
agaran 2016-11-26 19:31:56 +00:00 committed by GitHub
commit a460dec811
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@ end
minetest.register_on_player_receive_fields(function(player, formname, fields)
if formname ~= FORMNAME then return end
local name = player:get_player_name()
if not minetest.check_player_privs(name, { ban=true}) then
minetest.log("Received xban form fields from user who lacks privilege:: "..name)
return
end
local state = get_state(name)
if fields.player then
local t = minetest.explode_textlist_event(fields.player)