mirror of
https://github.com/rubenwardy/food.git
synced 2024-12-22 16:00:19 +01:00
Fix buckets being lost when making butter
This commit is contained in:
parent
93de17fdc3
commit
ba36be5fe0
@ -260,6 +260,21 @@ food.module("butter", function()
|
|||||||
inventory_image = "food_butter.png",
|
inventory_image = "food_butter.png",
|
||||||
groups = {food_butter=1}
|
groups = {food_butter=1}
|
||||||
})
|
})
|
||||||
|
food.craft({
|
||||||
|
output = "food:butter",
|
||||||
|
recipe = {{"group:food_milkbucket","group:food_milkbucket"}},
|
||||||
|
replacements = {
|
||||||
|
{"group:food_milkbucket","bucket:bucket_empty"},
|
||||||
|
{"group:food_milkbucket","bucket:bucket_empty"}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
food.craft({
|
||||||
|
output = "food:butter",
|
||||||
|
recipe = {{"group:food_milk","group:food_milkbucket"}},
|
||||||
|
replacements = {
|
||||||
|
{"group:food_milkbucket","bucket:bucket_empty"},
|
||||||
|
},
|
||||||
|
})
|
||||||
food.craft({
|
food.craft({
|
||||||
output = "food:butter",
|
output = "food:butter",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -40,9 +40,11 @@ food.support("carrot", {
|
|||||||
food.support("milk", {
|
food.support("milk", {
|
||||||
"animalmaterials:milk",
|
"animalmaterials:milk",
|
||||||
"my_mobs:milk_glass_cup",
|
"my_mobs:milk_glass_cup",
|
||||||
|
"mtfoods:dandelion_milk"
|
||||||
|
})
|
||||||
|
food.support("milkbucket", {
|
||||||
"jkanimals:bucket_milk",
|
"jkanimals:bucket_milk",
|
||||||
"mobs:bucket_milk",
|
"mobs:bucket_milk",
|
||||||
"mtfoods:dandelion_milk"
|
|
||||||
})
|
})
|
||||||
food.support("egg", {
|
food.support("egg", {
|
||||||
"animalmaterials:egg",
|
"animalmaterials:egg",
|
||||||
|
Loading…
Reference in New Issue
Block a user