aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-26 06:53:09 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-26 06:53:09 +1000
commita6eb4f42104516ecf26c7ee7272326446cc389ca (patch)
tree292be0cb39ba2db6c97ff097be94c7000bbc3f6e /src/Java/gtPlusPlus/xmod
parent39ba9e4d5f528b21397977807eae5eb9e62988d1 (diff)
downloadGT5-Unofficial-a6eb4f42104516ecf26c7ee7272326446cc389ca.tar.gz
GT5-Unofficial-a6eb4f42104516ecf26c7ee7272326446cc389ca.tar.bz2
GT5-Unofficial-a6eb4f42104516ecf26c7ee7272326446cc389ca.zip
+ Enabled the Alloy Blast Smelter.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/enums/GregtechItemList.java2
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java (renamed from src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSinter.java)8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/enums/GregtechItemList.java b/src/Java/gtPlusPlus/xmod/gregtech/api/enums/GregtechItemList.java
index e69ab529c6..dbf2e9f877 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/api/enums/GregtechItemList.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/api/enums/GregtechItemList.java
@@ -100,7 +100,7 @@ public enum GregtechItemList implements GregtechItemContainer {
Food_Baked_Raisin_Bread,
//For sintering TODO
- Industrial_SinterFurnace,
+ Industrial_AlloyBlastSmelter,
//Block that enables uplink to a superconductor network
SuperConductorInputNode,
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSinter.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java
index d03554224c..0e08c4b135 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSinter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java
@@ -2,14 +2,14 @@ package gtPlusPlus.xmod.gregtech.registration.gregtech;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
-import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_IndustrialSinter;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_AlloyBlastSmelter;
-public class GregtechIndustrialSinter{
+public class GregtechIndustrialBlastSmelter{
public static void run()
{
if (gtPlusPlus.core.lib.LoadedMods.Gregtech){
- Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Sinter Furnace Multiblock.");
+ Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Blast Smelter Multiblock.");
run1();
}
@@ -18,7 +18,7 @@ public class GregtechIndustrialSinter{
private static void run1()
{
//Industrial Electrolyzer Multiblock
- GregtechItemList.Industrial_SinterFurnace.set(new GregtechMetaTileEntity_IndustrialSinter(810, "industrialsinterfurnace.controller.tier.single", "Sinter Furnace").getStackForm(1L));
+ GregtechItemList.Industrial_AlloyBlastSmelter.set(new GregtechMetaTileEntity_AlloyBlastSmelter(810, "industrialsalloyamelter.controller.tier.single", "Blast Smelter").getStackForm(1L));
}
} \ No newline at end of file