diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-08-09 18:13:54 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-08-09 18:13:54 +1000 |
commit | f329a56cfc49be13de84523bee9990ee14597b62 (patch) | |
tree | 5c6b24987035a880749e4d62692d42cc7ab563cf /src/Java/gtPlusPlus/GTplusplus_Secondary.java | |
parent | d99058863bb4c717f6c63926d555811df48558af (diff) | |
download | GT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.tar.gz GT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.tar.bz2 GT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.zip |
% Rewrote the Preloader mod to now be a dummy mod.
+ Added ASM usage to Preloader.
+ MC Version annotations to both GT++ and it's child mod GT++ Dark world.
Diffstat (limited to 'src/Java/gtPlusPlus/GTplusplus_Secondary.java')
-rw-r--r-- | src/Java/gtPlusPlus/GTplusplus_Secondary.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus_Secondary.java b/src/Java/gtPlusPlus/GTplusplus_Secondary.java index e9888ded70..057810955f 100644 --- a/src/Java/gtPlusPlus/GTplusplus_Secondary.java +++ b/src/Java/gtPlusPlus/GTplusplus_Secondary.java @@ -11,6 +11,7 @@ import cpw.mods.fml.common.Mod.CustomProperty; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.*; import cpw.mods.fml.common.registry.GameRegistry; +import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.util.Utils; import gtPlusPlus.core.world.darkworld.Dimension_DarkWorld; @@ -19,6 +20,7 @@ import net.minecraft.item.ItemStack; import net.minecraft.world.World; import net.minecraft.world.chunk.IChunkProvider; +@MCVersion(value = "1.7.10") @ChildMod(parent = CORE.MODID, mod = @Mod(modid = "GT++DarkWorld", name = "GT++ Dark World", version = CORE.VERSION, |