diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 15:28:40 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 15:28:40 +1000 |
commit | a5ab04af307c9ff03a47461afeadc5256d97fd89 (patch) | |
tree | 7161e9defb86820c4ae4457ba00fa827bf4ed083 /src/Java/gtPlusPlus/xmod/gregtech/common | |
parent | a56a7c295a6a2b8f3cbaf0d517ac740eda70b485 (diff) | |
download | GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.tar.gz GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.tar.bz2 GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.zip |
[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
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
3 files changed, 6 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java index 7bd49b1ccd..00c9c65e80 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java @@ -36,8 +36,8 @@ extends GregtechMetaCasingBlocksAbstract { GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".9.name", "Matter Fabricator Casing"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".10.name", "Iron Plated Bricks"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".11.name", "Unused Casing"); - GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Reactor Casing Tier I"); - GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Reactor Casing Tier II"); + GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Hastelloy-N Reactor Casing"); + GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Zeron-100 Reactor Shielding"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Unused Coil Block"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".15.name", "Unused Coil Block"); GregtechItemList.Casing_Centrifuge1.set(new ItemStack(this, 1, 0)); diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingItems.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingItems.java index 1b9b571ef7..957a12bc14 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingItems.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingItems.java @@ -1,10 +1,9 @@ package gtPlusPlus.xmod.gregtech.common.blocks; -import gregtech.common.blocks.GT_Item_Casings_Abstract; import net.minecraft.block.Block; public class GregtechMetaCasingItems - extends GT_Item_Casings_Abstract { + extends GregtechMetaItemCasingsAbstract { public GregtechMetaCasingItems(Block par1) { super(par1); } diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java index 2cd7164fe1..6fa5b9fcac 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java @@ -150,12 +150,12 @@ public class GregtechMetaTileEntityMassFabricator extends GT_MetaTileEntity_Mult mMatterProduced++; mAmplifierUsed++; updateSlots(); - Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); + //Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); return true; } } else { - Utils.LOG_INFO("Invalid Recipe"); + //Utils.LOG_INFO("Invalid Recipe"); return false; } } @@ -185,7 +185,7 @@ public class GregtechMetaTileEntityMassFabricator extends GT_MetaTileEntity_Mult ArrayUtils.reverse(mOutputFluids); mMatterProduced++; updateSlots(); - Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); + //Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); return true; } } |