mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 04:21:07 +01: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