summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--donut.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/donut.lua b/donut.lua
index 87650d7..41c2b8a 100644
--- a/donut.lua
+++ b/donut.lua
@@ -64,7 +64,8 @@ minetest.after(0, function()
recipe = {
"farming:barley", "farming:barley", "farming:wheat",
"farming:wheat", "mobs:bucket_milk"
- }
+ },
+ replacements = {{"mobs:bucket_milk", "bucket:bucket_empty"}}
})
else
minetest.register_craft({
@@ -73,7 +74,8 @@ else
recipe = {
"farming:barley", "farming:barley", "farming:wheat",
"farming:wheat", "bucket:bucket_water"
- }
+ },
+ replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
})
end
end)