From f56e43b830f99616d88e9faee5ebf4793dbbab0b Mon Sep 17 00:00:00 2001 From: OgelGames Date: Thu, 19 Nov 2020 13:44:32 +1100 Subject: [PATCH] set chest color meta as int, not string --- technic_chests/formspec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic_chests/formspec.lua b/technic_chests/formspec.lua index fbfa801..6c9851c 100644 --- a/technic_chests/formspec.lua +++ b/technic_chests/formspec.lua @@ -227,7 +227,7 @@ function technic.chests.get_receive_fields(data) node.name = data.node_name end minetest.swap_node(pos, node) - meta:set_string("color", i) + meta:set_int("color", i) break end end