correct tile order in smithing table item def

This commit is contained in:
cora 2022-06-29 20:18:59 +02:00
parent 145d183998
commit c9dadc0bc7
1 changed files with 6 additions and 2 deletions

View File

@ -74,8 +74,12 @@ minetest.register_node("mcl_smithing_table:table", {
groups = {pickaxey = 2, deco_block = 1},
tiles = {
"mcl_smithing_table_top.png", "mcl_smithing_table_front.png", "mcl_smithing_table_side.png",
"mcl_smithing_table_side.png", "mcl_smithing_table_side.png", "mcl_smithing_table_side.png"
"mcl_smithing_table_top.png",
"mcl_smithing_table_bottom.png",
"mcl_smithing_table_side.png",
"mcl_smithing_table_side.png",
"mcl_smithing_table_side.png",
"mcl_smithing_table_front.png",
},
sounds = mcl_sounds.node_sound_metal_defaults(),