diff options
Diffstat (limited to 'mesecons_blinkyplant')
-rw-r--r-- | mesecons_blinkyplant/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_blinkyplant/init.lua b/mesecons_blinkyplant/init.lua index 4cde7d4..429a220 100644 --- a/mesecons_blinkyplant/init.lua +++ b/mesecons_blinkyplant/init.lua @@ -12,7 +12,7 @@ minetest.register_node("mesecons_blinkyplant:blinky_plant_off", { sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, }, mesecons = {receptor = { state = mesecon.state.off @@ -33,7 +33,7 @@ minetest.register_node("mesecons_blinkyplant:blinky_plant_on", { sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3}, }, mesecons = {receptor = { state = mesecon.state.on |