Rename argument to priv check

Fixes crash when punching bones not owned by you, and may resolve https://github.com/minetest/minetest_game/issues/940
This commit is contained in:
James Stevenson 2016-03-16 14:34:07 -04:00 committed by paramat
parent 70248505ae
commit d90a081722
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ bones = {}
local function is_owner(pos, name)
local owner = minetest.get_meta(pos):get_string("owner")
if owner == "" or owner == name or minetest.check_player_privs(placer, "protection_bypass") then
if owner == "" or owner == name or minetest.check_player_privs(name, "protection_bypass") then
return true
end
return false