Nodes, Items, and Crafting: Correct missing comma in code
This commit is contained in:
parent
99ec70484f
commit
db7a6f65de
@ -239,7 +239,7 @@ need to be in any specific place for it to work.
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "mymod:diamond",
|
output = "mymod:diamond",
|
||||||
recipe = {"mymod:diamond_fragments" "mymod:diamond_fragments", "mymod:diamond_fragments"}
|
recipe = {"mymod:diamond_fragments", "mymod:diamond_fragments", "mymod:diamond_fragments"}
|
||||||
})
|
})
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user