aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-07 22:28:35 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-07 22:28:35 +1000
commitf4ac62247a54c38466fb7544aae63e6d97fb2740 (patch)
treef422cccbd6b944bd163189fe094e9ca4d941b7ae /src/Java/gtPlusPlus/xmod/gregtech/registration
parent54cb60e2ba5a9feef685ac369d7eb4b51fc847c0 (diff)
downloadGT5-Unofficial-f4ac62247a54c38466fb7544aae63e6d97fb2740.tar.gz
GT5-Unofficial-f4ac62247a54c38466fb7544aae63e6d97fb2740.tar.bz2
GT5-Unofficial-f4ac62247a54c38466fb7544aae63e6d97fb2740.zip
$ Work on GT Chunkloader.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTieredChunkloaders.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTieredChunkloaders.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTieredChunkloaders.java
new file mode 100644
index 0000000000..6e5274536f
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTieredChunkloaders.java
@@ -0,0 +1,25 @@
+package gtPlusPlus.xmod.gregtech.registration.gregtech;
+
+import gtPlusPlus.api.objects.Logger;
+import gtPlusPlus.core.lib.CORE;
+import gtPlusPlus.core.lib.LoadedMods;
+import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.basic.GregtechMetaTileEntityChunkLoader;
+import gtPlusPlus.xmod.gregtech.common.tileentities.storage.GT_MetaTileEntity_TieredTank;
+
+public class GregtechTieredChunkloaders {
+ public static void run() {
+ if (LoadedMods.Gregtech) {
+ Logger.INFO("Gregtech5u Content | Registering Portable Fluid Tanks.");
+ run1();
+ }
+
+ }
+
+ private static void run1() {
+ int ID = 945;
+ GregtechItemList.GT_Chunkloader_HV
+ .set(new GregtechMetaTileEntityChunkLoader(ID++, "chunkloader.tier.00", "Chunkloader MK I", 4)
+ .getStackForm(1L));
+ }
+}