diff options
| author | ScriptedPiky <41557212+ScriptedPiky@users.noreply.github.com> | 2022-07-14 05:55:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 19:55:51 +0700 |
| commit | 2fbf3292976696bc9b4b09df7f32d9dd407caa7b (patch) | |
| tree | cf4aec7a403d9ebe2ac305a305fed816eb13727f | |
| parent | 86349af213a89e720e17ad778e7528b93e5f5274 (diff) | |
| download | GT5-Unofficial-2fbf3292976696bc9b4b09df7f32d9dd407caa7b.tar.gz GT5-Unofficial-2fbf3292976696bc9b4b09df7f32d9dd407caa7b.tar.bz2 GT5-Unofficial-2fbf3292976696bc9b4b09df7f32d9dd407caa7b.zip | |
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
| -rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
