aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/core
diff options
context:
space:
mode:
authorRyan Nasers <42074409+Cardinalstars@users.noreply.github.com>2024-08-05 03:30:58 -0500
committerGitHub <noreply@github.com>2024-08-05 15:30:58 +0700
commit1ab7b9dbcbf375ceff1449502acd0f873f2da51a (patch)
tree0b68625e6e1ab655ca6892272211fb4bb4a79cd1 /src/main/java/gtPlusPlus/core
parent5c9c4000c6130bd44ad43204dd6220dcda401c10 (diff)
downloadGT5-Unofficial-1ab7b9dbcbf375ceff1449502acd0f873f2da51a.tar.gz
GT5-Unofficial-1ab7b9dbcbf375ceff1449502acd0f873f2da51a.tar.bz2
GT5-Unofficial-1ab7b9dbcbf375ceff1449502acd0f873f2da51a.zip
Adding some stuff I removed long ago (#2702)
* Adding back in stuff I removed * Fixing connections * Idk what this was * Spotless --------- Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/core')
-rw-r--r--src/main/java/gtPlusPlus/core/handler/COMPAT_HANDLER.java10
-rw-r--r--src/main/java/gtPlusPlus/core/lib/CORE.java1
2 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/handler/COMPAT_HANDLER.java b/src/main/java/gtPlusPlus/core/handler/COMPAT_HANDLER.java
index 90373e2c4c..8e780c724e 100644
--- a/src/main/java/gtPlusPlus/core/handler/COMPAT_HANDLER.java
+++ b/src/main/java/gtPlusPlus/core/handler/COMPAT_HANDLER.java
@@ -84,6 +84,11 @@ import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechPollutionDevices;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechPowerSubStation;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechQuantumForceTransformer;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRTG;
+import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRedstoneButtonPanel;
+import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRedstoneCircuitBlock;
+import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRedstoneLamp;
+import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRedstoneStrengthDisplay;
+import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRedstoneStrengthScale;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechRocketFuelGenerator;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechSemiFluidgenerators;
import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechSimpleWasher;
@@ -180,6 +185,11 @@ public class COMPAT_HANDLER {
GregtechIndustrialRockBreaker.run();
GregtechIndustrialChisel.run();
GregtechIndustrialFluidHeater.run();
+ GregtechRedstoneButtonPanel.run();
+ GregtechRedstoneCircuitBlock.run();
+ GregtechRedstoneLamp.run();
+ GregtechRedstoneStrengthDisplay.run();
+ GregtechRedstoneStrengthScale.run();
}
// InterMod
diff --git a/src/main/java/gtPlusPlus/core/lib/CORE.java b/src/main/java/gtPlusPlus/core/lib/CORE.java
index 088923895d..535a3f0821 100644
--- a/src/main/java/gtPlusPlus/core/lib/CORE.java
+++ b/src/main/java/gtPlusPlus/core/lib/CORE.java
@@ -106,6 +106,7 @@ public class CORE {
public static boolean enableMachine_Pollution = true;
public static boolean enableCustom_Pipes = true;
public static boolean enableCustom_Cables = true;
+ public static boolean enableMachine_RedstoneBlocks = true;
// Multiblocks
public static boolean enableMultiblock_AlloyBlastSmelter = true;