diff options
| author | BlueHero233 <87818077+BlueHero233@users.noreply.github.com> | 2024-09-12 02:44:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-12 05:44:41 +0000 |
| commit | b999494e2dfefdf5bf057df09de8d5c835caca63 (patch) | |
| tree | d0f8b3a1ea27f73e00c12fa3efce801bae9941da /src/main/java/gregtech/loaders/postload | |
| parent | 4221744e308cf19cecf9e0d2b06769abe9d7e8e5 (diff) | |
| download | GT5-Unofficial-b999494e2dfefdf5bf057df09de8d5c835caca63.tar.gz GT5-Unofficial-b999494e2dfefdf5bf057df09de8d5c835caca63.tar.bz2 GT5-Unofficial-b999494e2dfefdf5bf057df09de8d5c835caca63.zip | |
Texture Work 2: Electric Boogaloo (#3161)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/loaders/postload')
| -rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java | 16 | ||||
| -rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java index 8e4fb0bc58..178034b176 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java @@ -296,7 +296,7 @@ public class BreweryRecipes implements Runnable { GTValues.RA.stdBuilder() .itemInputs(GTOreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L)) .fluidInputs(new FluidStack(tFluid, 750)) - .fluidOutputs(getFluidStack("potion.darkcoffee", 750)) + .fluidOutputs(getFluidStack("potion.coffee", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) .addTo(brewingRecipes); @@ -341,7 +341,7 @@ public class BreweryRecipes implements Runnable { GTValues.RA.stdBuilder() .itemInputs(GTOreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L)) .fluidInputs(getFluidStack("milk", 750)) - .fluidOutputs(getFluidStack("potion.coffee", 750)) + .fluidOutputs(getFluidStack("potion.latte", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) .addTo(brewingRecipes); @@ -380,16 +380,16 @@ public class BreweryRecipes implements Runnable { GTValues.RA.stdBuilder() .itemInputs(GTOreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L)) - .fluidInputs(getFluidStack("potion.coffee", 750)) - .fluidOutputs(getFluidStack("potion.cafeaulait", 750)) + .fluidInputs(getFluidStack("potion.latte", 750)) + .fluidOutputs(getFluidStack("potion.sweetlatte", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) .addTo(brewingRecipes); GTValues.RA.stdBuilder() .itemInputs(GTOreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L)) - .fluidInputs(getFluidStack("potion.cafeaulait", 750)) - .fluidOutputs(getFluidStack("potion.laitaucafe", 750)) + .fluidInputs(getFluidStack("potion.sweetlatte", 750)) + .fluidOutputs(getFluidStack("potion.sweetjesuslatte", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) .addTo(brewingRecipes); @@ -404,8 +404,8 @@ public class BreweryRecipes implements Runnable { GTValues.RA.stdBuilder() .itemInputs(GTOreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L)) - .fluidInputs(getFluidStack("potion.darkcoffee", 750)) - .fluidOutputs(getFluidStack("potion.darkcafeaulait", 750)) + .fluidInputs(getFluidStack("potion.coffee", 750)) + .fluidOutputs(getFluidStack("potion.sweetcoffee", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) .addTo(brewingRecipes); diff --git a/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java index de86455665..17df7fea61 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java @@ -446,7 +446,7 @@ public class MixerRecipes implements Runnable { GTOreDictUnificator.get(OrePrefixes.dust, Materials.MeatRaw, 1)) .itemOutputs(ItemList.Food_Chum.get(4)) .fluidInputs(getFluidStack("potion.purpledrink", 750)) - .fluidOutputs(getFluidStack("sludge", 1000)) + .fluidOutputs(getFluidStack("Sludge", 1000)) .duration(6 * SECONDS + 8 * TICKS) .eut(24) .addTo(mixerRecipes); |
