redo chest formspec to be android friendly

This commit is contained in:
tenplus1
2021-07-21 15:50:47 +01:00
parent 8de7148cdc
commit 1f84b04388
5 changed files with 21 additions and 16 deletions
+2 -4
View File
@@ -651,15 +651,13 @@ minetest.register_node("protector:protect2", {
-- recipes to switch between protectors
minetest.register_craft({
type = "shapeless",
output = "protector:protect",
recipe = {"protector:protect2"}
recipe = {{"protector:protect2"}}
})
minetest.register_craft({
type = "shapeless",
output = "protector:protect2",
recipe = {"protector:protect"}
recipe = {{"protector:protect"}}
})