aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
diff options
context:
space:
mode:
authorLOKKO12 <33183715+LOKKO12@users.noreply.github.com>2018-01-22 18:56:12 +0100
committerLOKKO12 <33183715+LOKKO12@users.noreply.github.com>2018-01-22 18:56:12 +0100
commit9066c13deea8a77c3e4828b4fcddf7cf0a096a74 (patch)
treea0f4ac442e59b1056b260d03e0c17b771470fae7 /src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
parent2bfa55842458c092acb599fd4876a74386680b0f (diff)
downloadGT5-Unofficial-9066c13deea8a77c3e4828b4fcddf7cf0a096a74.tar.gz
GT5-Unofficial-9066c13deea8a77c3e4828b4fcddf7cf0a096a74.tar.bz2
GT5-Unofficial-9066c13deea8a77c3e4828b4fcddf7cf0a096a74.zip
- removed GT6 support
- removed IE support - removed biome specific vein support - removed ShowAll button due to Memory Issures - fixed %material - try to read out config without modifying it - added Coustom Vein renamer
Diffstat (limited to 'src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java')
-rw-r--r--src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java19
1 files changed, 2 insertions, 17 deletions
diff --git a/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java b/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
index 76132661c4..fd0e6710b5 100644
--- a/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
+++ b/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
@@ -5,19 +5,15 @@ import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLLoadCompleteEvent;
import cpw.mods.fml.relauncher.Side;
-import pers.gwyog.gtneioreplugin.util.GT6OreLayerHelper;
-import pers.gwyog.gtneioreplugin.util.GT6OreSmallHelper;
import pers.gwyog.gtneioreplugin.util.GT5OreLayerHelper;
import pers.gwyog.gtneioreplugin.util.GT5OreSmallHelper;
-import pers.gwyog.gtneioreplugin.util.GT6OreBedrockHelper;
@Mod(modid = GTNEIOrePlugin.MODID, name = GTNEIOrePlugin.NAME, version = GTNEIOrePlugin.VERSION, dependencies = "required-after:gregtech;required-after:NotEnoughItems")
public class GTNEIOrePlugin {
public static final String MODID = "gtneioreplugin";
- public static final String NAME = "GT NEI Ore Plugin";
- public static final String VERSION = "1.0.4";
+ public static final String NAME = "GT NEI Ore Plugin GT:NH Mod";
+ public static final String VERSION = "1.0.4-GTNH";
- // default is GT5, however it will be "GT6" when GT6 is installed
public static String GTVersion = "GT5";
@Mod.Instance(MODID)
@@ -26,20 +22,9 @@ public class GTNEIOrePlugin {
@EventHandler
public void onLoadComplete(FMLLoadCompleteEvent event) {
if (event.getSide() == Side.CLIENT) {
- try {
- Class clazzGT6API = Class.forName("gregapi.GT_API");
- GTVersion = "GT6";
- } catch (ClassNotFoundException e) {}
- if (GTVersion.equals("GT5")) {
new GT5OreLayerHelper();
new GT5OreSmallHelper();
}
- else {
- new GT6OreLayerHelper();
- new GT6OreSmallHelper();
- new GT6OreBedrockHelper();
- }
}
- }
}