summaryrefslogtreecommitdiff
path: root/concrete/init.lua
diff options
context:
space:
mode:
authorThomas--S <Thomas--S@users.noreply.github.com>2017-04-13 19:12:46 +0200
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-13 13:12:46 -0400
commit6b8011eba799dbd24dbeb613063f7c0005c45701 (patch)
tree840748cefa6ec4c86779468b5048aa641130fa05 /concrete/init.lua
parent1d20af1bcba7611289d194afcac0dc1ecec87a0c (diff)
Fix fence nodebox (#346)
Diffstat (limited to 'concrete/init.lua')
-rw-r--r--concrete/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/concrete/init.lua b/concrete/init.lua
index 66564ba..ca04733 100644
--- a/concrete/init.lua
+++ b/concrete/init.lua
@@ -94,9 +94,9 @@ minetest.register_node(":technic:blast_resistant_concrete", {
local box_platform = {-0.5, 0.3, -0.5, 0.5, 0.5, 0.5}
local box_post = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15}
-local box_front = {-0.1, -0.3, 0, 0.1, 0.3, -0.5}
+local box_front = {-0.1, -0.3, -0.5, 0.1, 0.3, 0}
local box_back = {-0.1, -0.3, 0, 0.1, 0.3, 0.5}
-local box_left = {0, -0.3, -0.1, -0.5, 0.3, 0.1}
+local box_left = {-0.5, -0.3, -0.1, 0, 0.3, 0.1}
local box_right = {0, -0.3, -0.1, 0.5, 0.3, 0.1}
minetest.register_node(":technic:concrete_post_platform", {