diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/tinkers/HANDLER_Tinkers.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/tinkers/HANDLER_Tinkers.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/tinkers/HANDLER_Tinkers.java b/src/Java/gtPlusPlus/xmod/tinkers/HANDLER_Tinkers.java new file mode 100644 index 0000000000..3ece2cc61d --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/tinkers/HANDLER_Tinkers.java @@ -0,0 +1,34 @@ +package gtPlusPlus.xmod.tinkers; + +import gtPlusPlus.core.lib.LoadedMods; +import gtPlusPlus.xmod.tinkers.util.TinkersUtils; +import net.minecraftforge.fluids.Fluid; +import net.minecraftforge.fluids.FluidRegistry; + +public class HANDLER_Tinkers { + + public static final void preInit() { + if (LoadedMods.TiCon) { + + } + } + + public static final void init() { + if (LoadedMods.TiCon) { + //Migrate TiCon further back in the oreDict so that I never grab items from it. + //TinkersUtils.stopTiconLoadingFirst(); + Fluid pyrotheumFluid = FluidRegistry.getFluid("pyrotheum"); + if (pyrotheumFluid != null) { + //Enable Pyrotheum as Fuel for the Smeltery + TinkersUtils.addSmelteryFuel(pyrotheumFluid, 5000, 70); // pyrotheum lasts 3.5 seconds per 15 mb + } + } + } + + public static final void postInit() { + if (LoadedMods.TiCon) { + + } + } + +} |