From b43c7046d7b9e30504698b98fba043b9b5538e34 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Rollo Date: Sat, 9 Mar 2019 19:11:44 +0100 Subject: [PATCH] Fixed top and bottom nodeboxes in preparation of new rotation abilities --- ontime_clocks/nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ontime_clocks/nodes.lua b/ontime_clocks/nodes.lua index 9e7178b..107d2e9 100644 --- a/ontime_clocks/nodes.lua +++ b/ontime_clocks/nodes.lua @@ -31,8 +31,8 @@ minetest.register_node("ontime_clocks:green_digital", { node_box = { type = "wallmounted", wall_side = { -0.5, -3/16, -7/16, -13/32, 7/32, 7/16 }, - wall_bottom = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }, - wall_top = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 } + wall_top = { -7/16, 0.5, -7/32, 7/16, 13/32, 3/16 }, + wall_bottom = { -7/16, -0.5, -3/16, 7/16, -13/32, 7/32 }, }, tiles = {"ontime_clocks_digital.png"}, groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},