Nodes, Items, and Crafting: Correct missing comma in code

master
suzumiyasmith 2017-04-27 21:17:21 +01:00 committed by rubenwardy
parent 99ec70484f
commit db7a6f65de
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +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 %}