Node, Items and Crafting: Fixed Shapeless Recipe Example
Minetest was giving an error because the shapeless recipe comprised of three lines, rather than putting everything on one line. This fixes the problem.
This commit is contained in:
parent
41200b0b03
commit
0884f744fc
@ -239,9 +239,7 @@ need to be in any specific place for it to work.
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mymod:diamond",
|
||||
recipe = {
|
||||
{"mymod:diamond_fragments" "mymod:diamond_fragments", "mymod:diamond_fragments"}
|
||||
}
|
||||
recipe = {"mymod:diamond_fragments" "mymod:diamond_fragments", "mymod:diamond_fragments"}
|
||||
})
|
||||
{% endhighlight %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user