aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorDraknyte1 <3060479+draknyte1@users.noreply.github.com>2018-06-17 16:26:10 +1000
committerDraknyte1 <3060479+draknyte1@users.noreply.github.com>2018-06-17 16:26:10 +1000
commit98ced974896cd23e4011357bfb7a85699a58db72 (patch)
tree82b4c79645888120d39cfa29f805f7de23d9dee3 /src/Java/gtPlusPlus/xmod/gregtech/registration
parent4852660e4c22add266ab49f3cebefadffdb7ec13 (diff)
downloadGT5-Unofficial-98ced974896cd23e4011357bfb7a85699a58db72.tar.gz
GT5-Unofficial-98ced974896cd23e4011357bfb7a85699a58db72.tar.bz2
GT5-Unofficial-98ced974896cd23e4011357bfb7a85699a58db72.zip
+ Added the Industrial Mixer.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMixer.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMixer.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMixer.java
new file mode 100644
index 0000000000..9c8673682c
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMixer.java
@@ -0,0 +1,27 @@
+package gtPlusPlus.xmod.gregtech.registration.gregtech;
+
+import gtPlusPlus.api.objects.Logger;
+import gtPlusPlus.core.lib.CORE;
+import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.processing.GregtechMetaTileEntity_IndustrialMixer;
+
+public class GregtechIndustrialMixer {
+
+ public static void run() {
+ if (gtPlusPlus.core.lib.LoadedMods.Gregtech) {
+ Logger.INFO("Gregtech5u Content | Registering Industrial Mixer Multiblock.");
+ if (CORE.ConfigSwitches.enableMultiblock_IndustrialPlatePress) {
+ run1();
+ }
+ }
+
+ }
+
+ private static void run1() {
+ // Industrial Mixer Multiblock
+ GregtechItemList.Industrial_Mixer.set(new GregtechMetaTileEntity_IndustrialMixer(811,
+ "industrialmixer.controller.tier.single", "Industrial Mixing Machine").getStackForm(1L));
+
+ }
+
+}