forked from nalc/homedecor_modpack
fix crash (bad variable ref)
This commit is contained in:
parent
301ae2ee1d
commit
b3337921a1
@ -2,9 +2,10 @@
|
|||||||
local S = homedecor.gettext
|
local S = homedecor.gettext
|
||||||
|
|
||||||
function homedecor.toggle_switch(pos, node, clicker, itemstack, pointed_thing)
|
function homedecor.toggle_switch(pos, node, clicker, itemstack, pointed_thing)
|
||||||
if minetest.is_protected(pos, clicker:get_player_name()) then
|
if not clicker then return false end
|
||||||
minetest.record_protection_violation(pos,
|
local playername = clicker:get_player_name()
|
||||||
sender:get_player_name())
|
if minetest.is_protected(pos, playername) then
|
||||||
|
minetest.record_protection_violation(pos, playername)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
local sep = string.find(node.name, "_o", -5)
|
local sep = string.find(node.name, "_o", -5)
|
||||||
|
Loading…
Reference in New Issue
Block a user