Properly change mode after granting/revoking creative

This commit is contained in:
Jean-Patrick Guerrero 2021-05-01 01:02:25 +02:00
parent 6fe9f96cad
commit d2d8be9f18
1 changed files with 10 additions and 1 deletions

View File

@ -2782,7 +2782,16 @@ if rawget(_G, "awards") then
core.register_on_dieplayer(set_fs)
end
core.register_on_chatcommand(function(name)
core.register_on_chatcommand(function(name, command, params)
if find(command, "grant") or find(command, "revoke") then
params = split(params, " ")
if params[2] and find(params[2], "creative") then
local data = pdata[name]
reset_data(data)
end
end
local player = core.get_player_by_name(name)
after(0, set_fs, player)
end)