From a5ab04af307c9ff03a47461afeadc5256d97fd89 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 10 Sep 2016 15:28:40 +1000 Subject: [1.4.6.1-release] % Bumped Version. % Cleaned up Dev. Code and disabled a few components for a new public release. % Changed some internal code related to blocks, GT casings from GT++ should now handle better. - Removed Processing_HotIngots.java --- .../gregtech/loaders/Processing_HotIngots.java | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/Java/gtPlusPlus/xmod/gregtech/loaders/Processing_HotIngots.java (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Processing_HotIngots.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Processing_HotIngots.java deleted file mode 100644 index e895b7cc0c..0000000000 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Processing_HotIngots.java +++ /dev/null @@ -1,23 +0,0 @@ -package gtPlusPlus.xmod.gregtech.loaders; - -import gregtech.api.enums.GT_Values; -import gregtech.api.enums.OrePrefixes; -import gregtech.api.util.GT_OreDictUnificator; -import gregtech.api.util.GT_Utility; -import gtPlusPlus.core.util.Utils; -import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes; -import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials; -import gtPlusPlus.xmod.gregtech.api.interfaces.internal.Interface_OreRecipeRegistrator; -import net.minecraft.item.ItemStack; - -public class Processing_HotIngots implements Interface_OreRecipeRegistrator { - public Processing_HotIngots() { - Utils.LOG_INFO("Generating Hot Ingot."); - GregtechOrePrefixes.ingotHot.add(this); - } - - @Override - public void registerOre(GregtechOrePrefixes aPrefix, GT_Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { - GT_Values.RA.addVacuumFreezerRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L), (int) Math.max(aMaterial.getMass() * 3L, 1L)); - } -} -- cgit