Merge pull request #6659 from VoidLeech/mc1.18/correct-alexmobs-recipe-name

Fix Alexmobs Lava Bottle Filling Recipe Name
This commit is contained in:
simibubi 2024-07-15 16:21:04 +02:00 committed by GitHub
commit 9beda447ef
Failed to generate hash of commit
3 changed files with 2 additions and 2 deletions

View file

@ -5027,7 +5027,7 @@ c2f40d447fbac4b4975e578fe32635658b73ebf7 data/create/recipes/exposed_copper_tile
133e79f78a7f2c2f63ac7695d2be57d56e8955f4 data/create/recipes/filling/blaze_cake.json
642e96ce5dd2f31e7a33c6ef4060eecb0bf2aa86 data/create/recipes/filling/builders_tea.json
1367357fc36adc4b67467d90589ef91e657380a4 data/create/recipes/filling/chocolate_glazed_berries.json
61a770607d872ace2be80c3391fba4225182282f data/create/recipes/filling/compat/alexsmobs/milk_bottle.json
61a770607d872ace2be80c3391fba4225182282f data/create/recipes/filling/compat/alexsmobs/lava_bottle.json
08dde80a4761e430eaaa18fb813885d307b25bd1 data/create/recipes/filling/compat/byg/lush_grass_block.json
0e79248178f8c1690b4e5a5ad2ffaf63711ad3c7 data/create/recipes/filling/compat/farmersdelight/milk_bottle.json
bcfbc3d6617e32732a1e186059694c4880e2d2e4 data/create/recipes/filling/compat/neapolitan/milk_bottle.json

View file

@ -62,7 +62,7 @@ public class FillingRecipeGen extends ProcessingRecipeGen {
.output(Items.GLOWSTONE_DUST)),
AM_LAVA = create(Mods.AM.recipeId("milk_bottle"), b -> b.require(Fluids.LAVA, 250)
AM_LAVA = create(Mods.AM.recipeId("lava_bottle"), b -> b.require(Fluids.LAVA, 250)
.require(Items.GLASS_BOTTLE)
.output(1, Mods.AM, "lava_bottle", 1)
.whenModLoaded(Mods.AM.getId())),