aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorbombcar <github@bombcar.com>2023-11-30 11:03:44 -0600
committerGitHub <noreply@github.com>2023-11-30 11:03:44 -0600
commit5d83fd16deacc98b7541f675da008705b7cd3bc9 (patch)
tree1c0d110d84f7ad2ae869a9c134e81934521933aa /src/main/java/com
parentff31f1ea9d0172fae012da6f76c0ef5c29611110 (diff)
downloadGT5-Unofficial-5d83fd16deacc98b7541f675da008705b7cd3bc9.tar.gz
GT5-Unofficial-5d83fd16deacc98b7541f675da008705b7cd3bc9.tar.bz2
GT5-Unofficial-5d83fd16deacc98b7541f675da008705b7cd3bc9.zip
Remove messages for old ASM (#374)
* remove messages for old ASM * leave as info Former-commit-id: e7d58468058bee3e082bf3acb26017cacca7bf8e
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/ASM/BWCore.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/ASM/BWCore.java b/src/main/java/com/github/bartimaeusnek/bartworks/ASM/BWCore.java
index 05877f42e0..54598f9478 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/ASM/BWCore.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/ASM/BWCore.java
@@ -58,14 +58,10 @@ public class BWCore extends DummyModContainer {
public void preInit(FMLPreInitializationEvent event) {
shouldTransform[0] = ConfigHandler.enabledPatches[0];
shouldTransform[1] = ConfigHandler.enabledPatches[1];
+ shouldTransform[2] = ConfigHandler.enabledPatches[2];
shouldTransform[3] = ConfigHandler.enabledPatches[3];
- shouldTransform[4] = false;
- shouldTransform[5] = ConfigHandler.enabledPatches[5];
- shouldTransform[6] = ConfigHandler.enabledPatches[6];
- // shouldTransform[6] = true;
BWCore.BWCORE_LOG.info("Extra Utilities found and ASM Patch enabled? " + shouldTransform[0]);
- BWCore.BWCORE_LOG.info("Thaumcraft found and ASM Patch enabled? " + shouldTransform[3]);
- BWCore.BWCORE_LOG.info("RWG found and ASM Patch enabled? " + shouldTransform[5]);
+ BWCore.BWCORE_LOG.info("Thaumcraft found and ASM Patch enabled? " + shouldTransform[2]);
}
@Override