Navigation Menu

Skip to content

Commit

Permalink
Update selection boxes to make building easier.
Browse files Browse the repository at this point in the history
  • Loading branch information
Uberi committed Apr 20, 2013
1 parent 8afc6ab commit 10bacdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mesecons/wires.lua
Expand Up @@ -108,7 +108,7 @@ for zmy=0, 1 do
sunlight_propagates = true,
selection_box = {
type = "fixed",
fixed = {-.5, -.5, -.5, .5, -.5+1/16, .5}
fixed = {-.5, -.5, -.5, .5, -.5+4/16, .5}
},
node_box = {
type = "fixed",
Expand Down Expand Up @@ -137,7 +137,7 @@ for zmy=0, 1 do
sunlight_propagates = true,
selection_box = {
type = "fixed",
fixed = {-.5, -.5, -.5, .5, -.5+1/16, .5}
fixed = {-.5, -.5, -.5, .5, -.5+4/16, .5}
},
node_box = {
type = "fixed",
Expand Down
4 changes: 2 additions & 2 deletions mesecons_blinkyplant/init.lua
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mesecons_powerplant/init.lua
Expand Up @@ -13,7 +13,7 @@ minetest.register_node("mesecons_powerplant:power_plant", {
description="Power Plant",
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},
},
sounds = default.node_sound_leaves_defaults(),
mesecons = {receptor = {
Expand Down

0 comments on commit 10bacdd

Please sign in to comment.