mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
fix crash (bad variable ref)
This commit is contained in:
parent
301ae2ee1d
commit
b3337921a1
@ -2,9 +2,10 @@
|
||||
local S = homedecor.gettext
|
||||
|
||||
function homedecor.toggle_switch(pos, node, clicker, itemstack, pointed_thing)
|
||||
if minetest.is_protected(pos, clicker:get_player_name()) then
|
||||
minetest.record_protection_violation(pos,
|
||||
sender:get_player_name())
|
||||
if not clicker then return false end
|
||||
local playername = clicker:get_player_name()
|
||||
if minetest.is_protected(pos, playername) then
|
||||
minetest.record_protection_violation(pos, playername)
|
||||
return false
|
||||
end
|
||||
local sep = string.find(node.name, "_o", -5)
|
||||
|
Loading…
Reference in New Issue
Block a user