mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-27 23:13:03 +00:00
Fix golden apple recipe
This commit is contained in:
parent
cb4654a6a7
commit
ddb374c418
1 changed files with 3 additions and 3 deletions
|
@ -553,9 +553,9 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:apple_gold",
|
output = "default:apple_gold",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:gold_nugget", "default:gold_nugget", "default:gold_nugget"},
|
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||||
{"default:gold_nugget", 'default:apple', "default:gold_nugget"},
|
{"default:gold_ingot", 'default:apple', "default:gold_ingot"},
|
||||||
{"default:gold_nugget", "default:gold_nugget", "default:gold_nugget"},
|
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue