diff --git a/techage/doc/guide.lua b/techage/doc/guide.lua index 0d92d62..b4153a7 100644 --- a/techage/doc/guide.lua +++ b/techage/doc/guide.lua @@ -191,8 +191,8 @@ minetest.register_craft({ minetest.register_node("techage:construction_board_pt_BR", { description = "TA Placa de construção (pt-BR)", - inventory_image = 'techage_constr_plan_inv.png', - tiles = {"techage_constr_plan.png"}, + inventory_image = 'techage_constr_plan_inv_br.png', + tiles = {"techage_constr_plan_br.png"}, drawtype = "nodebox", node_box = board_box, selection_box = board_box, @@ -242,15 +242,14 @@ minetest.register_craft({ minetest.register_craft({ type = "shapeless", - output = "techage:construction_board", + output = "techage:construction_board_pt_BR", recipe = {"techage:construction_board_RU"}, - recipe = {"techage:construction_board_pt_BR"}, }) minetest.register_craft({ type = "shapeless", - output = "techage:construction_board_pt_BR", - recipe = {"techage:construction_board_EN"}, + output = "techage:construction_board", + recipe = {"techage:construction_board_pt_BR"}, }) -- diff --git a/techage/textures/techage_constr_plan_br.png b/techage/textures/techage_constr_plan_br.png new file mode 100644 index 0000000..96b522a Binary files /dev/null and b/techage/textures/techage_constr_plan_br.png differ diff --git a/techage/textures/techage_constr_plan_inv_br.png b/techage/textures/techage_constr_plan_inv_br.png new file mode 100644 index 0000000..2efd26c Binary files /dev/null and b/techage/textures/techage_constr_plan_inv_br.png differ