From 798072dde97121169b44abad64b1593ca19b5da3 Mon Sep 17 00:00:00 2001 From: Vitalie Ciubotaru Date: Sun, 15 May 2016 23:01:00 +0900 Subject: [PATCH] New nodebox for ATM --- atm.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/atm.lua b/atm.lua index 588613f..9025daa 100644 --- a/atm.lua +++ b/atm.lua @@ -219,7 +219,18 @@ minetest.register_node("global_exchange:atm_bottom", { }, selection_box = { type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, 1.5, 0.5}, + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.5, 0.5, -0.5, -0.375, 1.125, -0.25}, + {0.375, 0.5, -0.5, 0.5, 1.125, -0.25}, + {-0.5, 0.5, -0.25, 0.5, 1.5, 0.5}, + {-0.5, 1.125, -0.4375, -0.375, 1.25, -0.25}, + {0.375, 1.125, -0.4375, 0.5, 1.25, -0.25}, + {-0.5, 1.25, -0.375, -0.375, 1.375, -0.25}, + {0.375, 1.25, -0.375, 0.5, 1.375, -0.25}, + {-0.5, 1.375, -0.3125, -0.375, 1.5, -0.25}, + {0.375, 1.375, -0.3125, 0.5, 1.5, -0.25}, + }, }, after_place_node = function(pos, placer, itemstack) local n = minetest.get_node_or_nil(pos)