diff options
author | Kyle <kyle.kylina@gmail.com> | 2012-09-10 15:48:06 -0700 |
---|---|---|
committer | Kyle <kyle.kylina@gmail.com> | 2012-09-10 15:48:06 -0700 |
commit | cee2574ff2c7ffa78e7333d832c15eea516a9637 (patch) | |
tree | 540aceee07885d49e4be9393764179d5061c38af | |
parent | 12b0a38fb1a168124258a00f690018ce8ae1ae7d (diff) | |
download | mesecons-cee2574ff2c7ffa78e7333d832c15eea516a9637.tar mesecons-cee2574ff2c7ffa78e7333d832c15eea516a9637.tar.gz mesecons-cee2574ff2c7ffa78e7333d832c15eea516a9637.tar.bz2 mesecons-cee2574ff2c7ffa78e7333d832c15eea516a9637.tar.xz mesecons-cee2574ff2c7ffa78e7333d832c15eea516a9637.zip |
fix t-junction selectionbox when on
-rw-r--r-- | mesecons_extrawires/tjunction.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_extrawires/tjunction.lua b/mesecons_extrawires/tjunction.lua index 80a7261..93eac0a 100644 --- a/mesecons_extrawires/tjunction.lua +++ b/mesecons_extrawires/tjunction.lua @@ -6,8 +6,8 @@ local tjunction_nodebox = { local tjunction_selectionbox = { type = "fixed", - fixed = { -16/32-0.001, -18/32, -16/32, 16/32+0.001, -12/32, 7/32 } -}, + fixed = { -16/32-0.001, -18/32, -16/32, 16/32+0.001, -12/32, 7/32 }, +} minetest.register_node("mesecons_extrawires:tjunction_on", { drawtype = "nodebox", |