From 958a1c9c9e92322b68f3c03e7b4064d69089a4eb Mon Sep 17 00:00:00 2001 From: Evgeniy Date: Tue, 21 Jan 2025 04:56:36 +0300 Subject: [PATCH] fix construction_board craft recipe loop --- doc/guide.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guide.lua b/doc/guide.lua index 2c97bd7..95ee775 100644 --- a/doc/guide.lua +++ b/doc/guide.lua @@ -238,7 +238,7 @@ minetest.register_craft({ minetest.register_craft({ type = "shapeless", output = "techage:construction_board", - recipe = {"techage:construction_board_pt_RU"}, + recipe = {"techage:construction_board_RU"}, }) minetest.register_craft({ @@ -249,7 +249,7 @@ minetest.register_craft({ minetest.register_craft({ type = "shapeless", - output = "techage:construction_board_pt_RU", + output = "techage:construction_board_RU", recipe = {"techage:construction_board_pt_BR"}, })