aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kekztech/KekzCore.java
diff options
context:
space:
mode:
authorkekzdealer <kekzdealer@gmail.com>2019-10-10 04:28:42 +0200
committerkekzdealer <kekzdealer@gmail.com>2019-10-10 04:28:42 +0200
commitbee1facd1b8e78d4ef734a7b1986276133e9e980 (patch)
treebf90d3a29a6ee2e522a82d489a89453a233cc99d /src/main/java/kekztech/KekzCore.java
parent820ca984d2dea005a126ef585661503f8cc992f5 (diff)
downloadGT5-Unofficial-bee1facd1b8e78d4ef734a7b1986276133e9e980.tar.gz
GT5-Unofficial-bee1facd1b8e78d4ef734a7b1986276133e9e980.tar.bz2
GT5-Unofficial-bee1facd1b8e78d4ef734a7b1986276133e9e980.zip
Implemented MultiHatch. Fixed all known bugs in the T.F.F.T's fluid handling. Fluid storage not yet persistent.
Diffstat (limited to 'src/main/java/kekztech/KekzCore.java')
-rw-r--r--src/main/java/kekztech/KekzCore.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/kekztech/KekzCore.java b/src/main/java/kekztech/KekzCore.java
index 5eb2916e02..33ad34d015 100644
--- a/src/main/java/kekztech/KekzCore.java
+++ b/src/main/java/kekztech/KekzCore.java
@@ -2,6 +2,7 @@ package kekztech;
import blocks.Block_GDCUnit;
import blocks.Block_TFFTCasing;
+import blocks.Block_TFFTMultiHatch;
import blocks.Block_TFFTStorageFieldBlockT1;
import blocks.Block_TFFTStorageFieldBlockT2;
import blocks.Block_TFFTStorageFieldBlockT3;
@@ -11,6 +12,7 @@ import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
+import cpw.mods.fml.common.registry.GameRegistry;
import gregtech.api.enums.GT_Values;
import gregtech.api.enums.ItemList;
import gregtech.api.enums.Materials;
@@ -27,6 +29,7 @@ import tileentities.GTMTE_FluidMultiStorage;
import tileentities.GTMTE_ModularNuclearReactor;
import tileentities.GTMTE_SOFuelCellMK1;
import tileentities.GTMTE_SOFuelCellMK2;
+import tileentities.TE_TFFTMultiHatch;
import util.Util;
@Mod(modid = KekzCore.MODID, name = KekzCore.NAME, version = KekzCore.VERSION,
@@ -61,6 +64,9 @@ public class KekzCore {
Block_TFFTStorageFieldBlockT2.getInstance().registerBlock();
Block_TFFTStorageFieldBlockT3.getInstance().registerBlock();
Block_TFFTStorageFieldBlockT4.getInstance().registerBlock();
+
+ Block_TFFTMultiHatch.getInstance().registerBlock();
+ GameRegistry.registerTileEntity(TE_TFFTMultiHatch.class, "kekztech_tfftmultihatch_tile");
}
@Mod.EventHandler