diff options
-rw-r--r-- | crafting.lua | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/crafting.lua b/crafting.lua index 6a61b95..3797b44 100644 --- a/crafting.lua +++ b/crafting.lua @@ -2,7 +2,7 @@ More Blocks: crafting recipes Copyright (c) 2011-2017 Hugo Locurcio and contributors. - 2018-2022 Och_Noe + 2018-2023 Och_Noe Licensed under the zlib license. See LICENSE.md for more information. --]] @@ -1018,3 +1018,16 @@ minetest.register_craft({ { "","","" }, } }) + + +-- 2023-08-21 default:dry_dirt_with_dry_grass + +minetest.register_craft({ + output = "default:dry_dirt_with_dry_grass", + recipe = { + { "default:dry_grass_1","","" }, + { "default:dry_dirt","","" }, + { "","","" }, + } +}) + |