summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-09-12 21:28:17 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2017-09-12 21:28:17 +0100
commit2d5f459d026cccfe394e9580f2ed9d81afe60f37 (patch)
tree8b214df50cafe387689b0fa9b0571e8fd73b5d65
parent80645ff8a22cf9689e3074dd0fdc55bcdffc3772 (diff)
crafting porridge returns empty bucket
-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)