forked from VoxeLibre/VoxeLibre
correct tile order in smithing table item def
This commit is contained in:
parent
145d183998
commit
c9dadc0bc7
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue