Skip to content

Commit

Permalink
Fix broken recipes (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklp09 authored Jul 1, 2024
1 parent 354f003 commit 977048f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ local panels = {
textures={front="jonez_palace_window_top.png", edge="default_wood.png"},
use_texture_alpha = "clip",
recipe = {
{'', 'xpanes:pane_flat', ''},
{'', 'xpanes:pane_flat', ''},
{'xpanes:pane_flat', 'xpanes:pane_flat', 'xpanes:pane_flat'},
{'xpanes:pane_flat', '', 'xpanes:pane_flat'},
{'', '', ''},
}
},
Expand All @@ -300,8 +300,8 @@ local panels = {
use_texture_alpha = "clip",
recipe = {
{'', '', ''},
{'', 'xpanes:pane_flat', ''},
{'', 'xpanes:pane_flat', ''},
{'xpanes:pane_flat', '', 'xpanes:pane_flat'},
{'xpanes:pane_flat', 'xpanes:pane_flat', 'xpanes:pane_flat'},
}
},
}
Expand Down Expand Up @@ -484,9 +484,9 @@ minetest.register_node("jonez:wrought_lattice_top", {
})

minetest.register_craft({
output = 'jonez:wrought_lattice_top',
output = 'jonez:wrought_lattice_top 16',
recipe = {
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
{'', 'default:tin_ingot', ''},
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
{'', '', ''},
}
Expand Down

0 comments on commit 977048f

Please sign in to comment.