From 2fbf3292976696bc9b4b09df7f32d9dd407caa7b Mon Sep 17 00:00:00 2001 From: ScriptedPiky <41557212+ScriptedPiky@users.noreply.github.com> Date: Thu, 14 Jul 2022 05:55:51 -0700 Subject: Fixed oversight by me, whoops (#244) Made the Quantum Anomaly recipe the intended 25 seconds instead of 500 seconds. This stuff is confusing as hell. The recipe still is processed at UV tier --- src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java') diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index ef749c8cfb..00f3e05c36 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -2188,7 +2188,7 @@ public class RECIPES_GREGTECH { }, null, new int[] {100}, - 20 * (GTNH ? 300 : 60), + 20 * (GTNH ? 25 : 60), (int) MaterialUtils.getVoltageForTier(8), 500 * 20); -- cgit