aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus')
-rw-r--r--src/main/java/gtPlusPlus/core/proxy/ClientProxy.java4
-rw-r--r--src/main/java/gtPlusPlus/nei/LFTRSpargingNEIHandler.java2
-rw-r--r--src/main/java/gtPlusPlus/nei/NEIGTPPConfig.java (renamed from src/main/java/gtPlusPlus/nei/GTPPNEIConfig.java)2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java b/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java
index 43b1d90648..04ad0c05c0 100644
--- a/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java
+++ b/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java
@@ -46,7 +46,7 @@ import gtPlusPlus.core.entity.projectile.EntityToxinballSmall;
import gtPlusPlus.core.lib.GTPPCore;
import gtPlusPlus.core.lib.GTPPCore.ConfigSwitches;
import gtPlusPlus.core.tileentities.general.TileEntityDecayablesChest;
-import gtPlusPlus.nei.GTPPNEIConfig;
+import gtPlusPlus.nei.NEIGTPPConfig;
import gtPlusPlus.xmod.gregtech.common.render.CapeRenderer;
import gtPlusPlus.xmod.gregtech.common.render.FlaskRenderer;
import gtPlusPlus.xmod.gregtech.common.render.MachineBlockRenderer;
@@ -97,7 +97,7 @@ public class ClientProxy extends CommonProxy implements Runnable {
new FlaskRenderer();
- MinecraftForge.EVENT_BUS.register(new GTPPNEIConfig());
+ MinecraftForge.EVENT_BUS.register(new NEIGTPPConfig());
super.init(e);
}
diff --git a/src/main/java/gtPlusPlus/nei/LFTRSpargingNEIHandler.java b/src/main/java/gtPlusPlus/nei/LFTRSpargingNEIHandler.java
index 37a578f718..2cb6ac62b8 100644
--- a/src/main/java/gtPlusPlus/nei/LFTRSpargingNEIHandler.java
+++ b/src/main/java/gtPlusPlus/nei/LFTRSpargingNEIHandler.java
@@ -43,7 +43,7 @@ public class LFTRSpargingNEIHandler extends TemplateRecipeHandler {
new Rectangle(65, 13, 36, 18),
this.getOverlayIdentifier(),
new Object[0]));
- if (!GTPPNEIConfig.sIsAdded) {
+ if (!NEIGTPPConfig.sIsAdded) {
FMLInterModComms.sendRuntimeMessage(
GTValues.GT,
"NEIPlugins",
diff --git a/src/main/java/gtPlusPlus/nei/GTPPNEIConfig.java b/src/main/java/gtPlusPlus/nei/NEIGTPPConfig.java
index 1cd6a2acb6..6f0da32994 100644
--- a/src/main/java/gtPlusPlus/nei/GTPPNEIConfig.java
+++ b/src/main/java/gtPlusPlus/nei/NEIGTPPConfig.java
@@ -19,7 +19,7 @@ import gtPlusPlus.core.util.Utils;
import gtPlusPlus.core.util.minecraft.ItemUtils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
-public class GTPPNEIConfig implements IConfigureNEI {
+public class NEIGTPPConfig implements IConfigureNEI {
public static boolean sIsAdded = true;