Skip to content

Commit

Permalink
Fix wrong input for filling milk buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Sep 5, 2020
1 parent 3359acf commit b4810cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/generated/resources/.cache/cache
Expand Up @@ -756,7 +756,7 @@ e535dc27fcec8fe03c36a71a0061ffeac2da95f9 data/inspirations/recipes/cauldron/dyea
3c88ffc4ee7893b5df93277a39c9a42bf7989591 data/inspirations/recipes/cauldron/empty_milk_bucket.json
079f53c94ad3f821efb34fbe3c92cfab01d46c15 data/inspirations/recipes/cauldron/empty_water_bottle.json
2b54da72e999ac88c3a26fdf0704bd06ce80dc90 data/inspirations/recipes/cauldron/fill_bucket.json
be79706db05479b1212c6e1b4897394c7f956224 data/inspirations/recipes/cauldron/fill_milk_bucket.json
e916ab2cb03f031e1c389ec0b1869ed16ac9baf6 data/inspirations/recipes/cauldron/fill_milk_bucket.json
4d16f0fbec7fda0992e4b3ec3a4d08e31e42e1a1 data/inspirations/recipes/cauldron/fill_water_bottle.json
8eaab1d162c52d950fa343a29660cac98892b0e5 data/inspirations/recipes/cauldron/ice/ice_from_water.json
f00af2e14b6e07f9270c4acb3b79070c01b25fa5 data/inspirations/recipes/cauldron/ice/packed_ice_from_wet_ice.json
Expand Down
Expand Up @@ -12,7 +12,7 @@
],
"input": {
"item": {
"item": "minecraft:milk_bucket"
"item": "minecraft:bucket"
},
"contents": {
"type": "inspirations:fluid",
Expand Down
Expand Up @@ -266,7 +266,7 @@ private void addCauldronRecipes() {
.addCriterion("has_item", hasItem(Items.MILK_BUCKET))
.setSound(SoundEvents.ITEM_BUCKET_EMPTY)
.build(cauldronRecipes, resource(folder + "empty_milk_bucket"));
CauldronRecipeBuilder.cauldron(SizedIngredient.fromItems(Items.MILK_BUCKET), milkIngredient)
CauldronRecipeBuilder.cauldron(SizedIngredient.fromItems(Items.BUCKET), milkIngredient)
.matchFull()
.setEmpty()
.setOutput(Items.MILK_BUCKET)
Expand Down

0 comments on commit b4810cb

Please sign in to comment.