forked from mtcontrib/darkage
Compare commits
1 Commits
36feb4dffe
...
v1.4.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
494f81c375 |
@@ -28,9 +28,9 @@ Contains code from CragiDavi and HybridDog
|
||||
|
||||
## 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>
|
||||
|
||||
|
||||
14
init.lua
14
init.lua
@@ -293,15 +293,17 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
-- Cookings
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "darkage:dry_leaves",
|
||||
recipe = "default:leaves",
|
||||
type = "shapeless",
|
||||
output = "darkage:dry_leaves 2",
|
||||
recipe = {
|
||||
"group:leaves",
|
||||
"group:leaves",
|
||||
},
|
||||
})
|
||||
|
||||
-- Cookings
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "darkage:schist",
|
||||
|
||||
Reference in New Issue
Block a user