From 142b171c57536705fe9846a889d3aedfa120a7f0 Mon Sep 17 00:00:00 2001 From: chochem <40274384+chochem@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:17:30 +0100 Subject: fix random pack breakage of the day no1 (#3164) --- src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/gregtech/loaders/postload') diff --git a/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/MixerRecipes.java index 17df7fea61..de86455665 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); -- cgit