crafting porridge returns empty bucket

This commit is contained in:
TenPlus1 2017-09-12 21:28:17 +01:00
parent 80645ff8a2
commit 2d5f459d02
1 changed files with 4 additions and 2 deletions

View File

@ -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)