diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-27 21:24:45 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-27 21:24:45 +1000 |
commit | 7711c80664fdfa703b5e60e62af437655da783ae (patch) | |
tree | 1a251a5919b7c6d4f32de7efca6a36d97cef0233 /src/Java/miscutil/gregtech/init/InitGregtech.java | |
parent | 707621bc6afd36856feafb052c2e65c52fe79986 (diff) | |
download | GT5-Unofficial-7711c80664fdfa703b5e60e62af437655da783ae.tar.gz GT5-Unofficial-7711c80664fdfa703b5e60e62af437655da783ae.tar.bz2 GT5-Unofficial-7711c80664fdfa703b5e60e62af437655da783ae.zip |
Added Custom GT Cables/Wire & also added a copy of EnderIO's Gas Conduit classes.
Time to combine the two, yeah?
Also stripped out a heap of constants and refactored them together.
Diffstat (limited to 'src/Java/miscutil/gregtech/init/InitGregtech.java')
-rw-r--r-- | src/Java/miscutil/gregtech/init/InitGregtech.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Java/miscutil/gregtech/init/InitGregtech.java b/src/Java/miscutil/gregtech/init/InitGregtech.java index 017a935e46..cabb0357cb 100644 --- a/src/Java/miscutil/gregtech/init/InitGregtech.java +++ b/src/Java/miscutil/gregtech/init/InitGregtech.java @@ -2,15 +2,18 @@ package miscutil.gregtech.init; import static miscutil.core.lib.LoadedMods.Gregtech; import miscutil.core.util.Utils; +import miscutil.gregtech.init.machines.GregtechConduits; import miscutil.gregtech.init.machines.GregtechEnergyBuffer; public class InitGregtech { public static void run() { if (Gregtech) { - Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering MetaTileEntities."); + Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Meta-TileEntities."); } + + /*** * Load up Blocks classes ***/ @@ -18,6 +21,7 @@ public class InitGregtech { // Machines // GregtechCobbleGenerator.run(); TODO - Weird Textures GregtechEnergyBuffer.run(); + GregtechConduits.run(); } } |