From 494f81c37593ec21f803bbcced70dcdc3e95a045 Mon Sep 17 00:00:00 2001 From: adrido Date: Sat, 22 Nov 2025 12:07:54 +0100 Subject: [PATCH] Change craft recipe of "Dry Leaves" --- README.md | 4 ++-- init.lua | 14 ++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index daa1903..ba3c93b 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/init.lua b/init.lua index 4926b42..526b28b 100644 --- a/init.lua +++ b/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",