From 397d449f1e668ceb8939626e018fc98ef72abbd3 Mon Sep 17 00:00:00 2001 From: auouymous Date: Thu, 10 Dec 2020 03:53:50 -0700 Subject: Use empty string for protection check if puncher or clicker is nil. --- mesecons_noteblock/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesecons_noteblock') diff --git a/mesecons_noteblock/init.lua b/mesecons_noteblock/init.lua index 577cee0..40e2577 100644 --- a/mesecons_noteblock/init.lua +++ b/mesecons_noteblock/init.lua @@ -4,7 +4,7 @@ minetest.register_node("mesecons_noteblock:noteblock", { is_ground_content = false, groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2}, on_punch = function(pos, node, puncher) -- change sound when punched - if minetest.is_protected(pos, puncher and puncher:get_player_name()) then + if minetest.is_protected(pos, puncher and puncher:get_player_name() or "") then return end -- cgit v1.2.3