Skip to content

Commit

Permalink
fix large square table top recipes (mt-mods#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorskalyo committed May 7, 2023
1 parent 77f2b0e commit 6e8bdb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions homedecor_tables/misc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ for i, mat in ipairs(tabletop_materials) do
end
end

minetest.register_alias('homedecor:'..m..'_table_large_b', 'homedecor:'..m..'_table_large')
minetest.register_alias('homedecor:'..m..'_table_large_square_b', 'homedecor:'..m..'_table_large_square')
minetest.register_alias('homedecor:'..m..'_table_small_square_b', 'homedecor:'..m..'_table_small_square')
minetest.register_alias('homedecor:'..m..'_table_small_round_b', 'homedecor:'..m..'_table_small_round')
minetest.register_alias('homedecor:'..m..'_table_large', 'homedecor:'..m..'_table_large_square')
Expand Down Expand Up @@ -187,7 +187,7 @@ minetest.register_craft( {
})

minetest.register_craft( {
output = "homedecor:glass_table_large_b 2",
output = "homedecor:glass_table_large_square_b 2",
recipe = {
{ "homedecor:glass_table_small_square", "homedecor:glass_table_small_square" },
}
Expand All @@ -210,7 +210,7 @@ minetest.register_craft( {
})

minetest.register_craft( {
output = "homedecor:wood_table_large_b 2",
output = "homedecor:wood_table_large_square_b 2",
recipe = {
{ "homedecor:wood_table_small_square", "homedecor:wood_table_small_square" },
}
Expand Down

0 comments on commit 6e8bdb8

Please sign in to comment.