forked from Mirrorlandia_minetest/mesecons
Use empty string for protection check if puncher or clicker is nil.
This commit is contained in:
parent
29ec26a4c8
commit
397d449f1e
@ -33,7 +33,7 @@ mesecon.register_node("mesecons_blinkyplant:blinky_plant", {
|
|||||||
},
|
},
|
||||||
on_timer = on_timer,
|
on_timer = on_timer,
|
||||||
on_rightclick = function(pos, node, clicker)
|
on_rightclick = function(pos, node, clicker)
|
||||||
if minetest.is_protected(pos, clicker and clicker:get_player_name()) then
|
if minetest.is_protected(pos, clicker and clicker:get_player_name() or "") then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ local off_state = {
|
|||||||
wield_image = "mesecons_delayer_off_1.png",
|
wield_image = "mesecons_delayer_off_1.png",
|
||||||
groups = off_groups,
|
groups = off_groups,
|
||||||
on_punch = function(pos, node, puncher)
|
on_punch = function(pos, node, puncher)
|
||||||
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
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -134,7 +134,7 @@ local on_state = {
|
|||||||
},
|
},
|
||||||
groups = {bendy = 2, snappy = 1, dig_immediate = 2, not_in_creative_inventory = 1},
|
groups = {bendy = 2, snappy = 1, dig_immediate = 2, not_in_creative_inventory = 1},
|
||||||
on_punch = function(pos, node, puncher)
|
on_punch = function(pos, node, puncher)
|
||||||
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
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ minetest.register_node("mesecons_noteblock:noteblock", {
|
|||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
|
||||||
on_punch = function(pos, node, puncher) -- change sound when punched
|
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
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user