diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-10 16:54:02 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-10 16:54:02 +0300 |
commit | 3c0a653d1dcf5ba69548ed698ab61a70eba4d5a1 (patch) | |
tree | 928afc5369d586160e8f1ae43e79e9be6bd3436b | |
parent | 9a5adfc41836bec4d171860f4870b422cd8b6bff (diff) |
adjust paint thickness to avoid visual glitches
-rw-r--r-- | technic/tools/spray_painter.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/technic/tools/spray_painter.lua b/technic/tools/spray_painter.lua index cea42b4..5988687 100644 --- a/technic/tools/spray_painter.lua +++ b/technic/tools/spray_painter.lua @@ -28,9 +28,9 @@ minetest.register_node ("technic:paint_layer", { tiles = {"technic_paint.png"}, node_box = { type = "wallmounted", - wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.499, 0.5}, - wall_top = {-0.5, 0.499, -0.5, 0.5, 0.5, 0.5}, - wall_side = {-0.5, -0.5, -0.5, -0.499, 0.5, 0.5}, + wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.49, 0.5}, + wall_top = {-0.5, 0.49, -0.5, 0.5, 0.5, 0.5}, + wall_side = {-0.5, -0.5, -0.5, -0.49, 0.5, 0.5}, }, drop = "", groups = {attached_node = 1, dig_immediate = 2, not_in_creative_inventory = 1}, |