Test Pull Request #4

Closed
chmodsayshello wants to merge 718 commits from Lodestone into mcl_sus_stew
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5d1b5bf43f - Show all commits

View File

@ -184,7 +184,7 @@ local function set_interact(player, interact)
local privs = minetest.get_player_privs(player_name) local privs = minetest.get_player_privs(player_name)
if privs.interact ~= interact then if privs.interact ~= interact then
local meta = player:get_meta() local meta = player:get_meta()
if meta:get_int("ineract_revoked") ~= 1 then if meta:get_int("interact_revoked") ~= 1 then
privs.interact = interact privs.interact = interact
minetest.set_player_privs(player_name, privs) minetest.set_player_privs(player_name, privs)
end end