Git Modded

Changes:
	modified:   food_basic/ingredients.lua
        Include new recipe instructions so as not to destroy buckets when making cheese
	modified:   food_basic/support.lua
        Include separate class for milk buckets
This commit is contained in:
engineer-pearl 2017-04-06 20:28:50 -07:00
parent 5527349522
commit 16a51aa924
2 changed files with 18 additions and 1 deletions

View File

@ -261,6 +261,21 @@ food.module("butter", function()
inventory_image = "food_butter.png",
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({
output = "food:butter",
recipe = {

View File

@ -40,9 +40,11 @@ food.support("carrot", {
food.support("milk", {
"animalmaterials:milk",
"my_mobs:milk_glass_cup",
"mtfoods:dandelion_milk"
})
food.support("milkbucket", {
"jkanimals:bucket_milk",
"mobs:bucket_milk",
"mtfoods:dandelion_milk"
})
food.support("egg", {
"animalmaterials:egg",