Change craft recipe of "Dry Leaves"

This commit is contained in:
adrido
2025-11-22 12:07:54 +01:00
parent c591d47cf8
commit 494f81c375
2 changed files with 10 additions and 8 deletions

View File

@@ -28,9 +28,9 @@ Contains code from CragiDavi and HybridDog
## Release Notes ## Release Notes
### Version 1.4.1 ### Version 1.4.2
* Minor Bug fixes * Change craft recipe of "Dry Leaves" to [Leave] [Leave] --> 2 "Dry Leaves" to avoid conflict with other mods
Full release notes: <https://github.com/adrido/darkage/releases> Full release notes: <https://github.com/adrido/darkage/releases>

View File

@@ -293,15 +293,17 @@ minetest.register_craft({
} }
}) })
-- Cookings
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "shapeless",
output = "darkage:dry_leaves", output = "darkage:dry_leaves 2",
recipe = "default:leaves", recipe = {
"group:leaves",
"group:leaves",
},
}) })
-- Cookings
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "darkage:schist", output = "darkage:schist",