mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-02-17 02:55:02 +01:00
Fix golden carrot recipe
This commit is contained in:
parent
9b36d10a8c
commit
eead716b52
1 changed files with 3 additions and 2 deletions
|
@ -82,8 +82,9 @@ minetest.register_craftitem("farming:carrot_item_gold", {
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:carrot_item_gold",
|
output = "farming:carrot_item_gold",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:gold_lump'},
|
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||||
{'farming:carrot_item'},
|
{'default:gold_nugget', 'farming:carrot_item', 'default:gold_nugget'},
|
||||||
|
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue