diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-04-16 21:22:56 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-04-16 21:22:56 +1000 |
commit | 333c1a09cf1a6ae7e128284c27d098f548042cca (patch) | |
tree | fe068ab7574e23d1a3490964a3a93c663981cf2f /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities | |
parent | 8c03170c38ef203c1264453ab04e9a9e80248708 (diff) | |
download | GT5-Unofficial-333c1a09cf1a6ae7e128284c27d098f548042cca.tar.gz GT5-Unofficial-333c1a09cf1a6ae7e128284c27d098f548042cca.tar.bz2 GT5-Unofficial-333c1a09cf1a6ae7e128284c27d098f548042cca.zip |
% Changed Adv. Cryo Freezer to not handle cells and instead use fluids (LCR type).
$ Added a check to ensure the inputs and outputs of all Adv. Cryo Freezer contain equal cell counts (Some Plasmas do not have a non-cell version, plus things like carbon becomes a solid).
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialVacuumFreezer.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialVacuumFreezer.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialVacuumFreezer.java index 9e5ccf0dc0..29a1b0ff78 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialVacuumFreezer.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialVacuumFreezer.java @@ -11,6 +11,7 @@ import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.base.Gregtech import net.minecraft.item.ItemStack; import gregtech.api.util.GT_Recipe; +import gregtech.api.util.Recipe_GT; import gregtech.api.gui.GT_GUIContainer_MultiMachine; import net.minecraft.entity.player.InventoryPlayer; import gregtech.api.interfaces.IIconContainer; @@ -53,8 +54,8 @@ public class GregtechMetaTileEntity_IndustrialVacuumFreezer extends GregtechMeta "Size(WxHxD): 3x3x3 (Hollow), Controller (Front centered)", "1x Input Bus (Any casing)", "1x Output Bus (Any casing)", - "1x Input Hatch (Any casing)", - "1x Output Hatch (Any casing)", + "1x Input Hatch (Any casing, optional)", + "1x Output Hatch (Any casing, optional)", "1x Maintenance Hatch (Any casing)", "1x Energy Hatch (Any casing)", mCasingName+"s for the rest (10 at least!)"}; @@ -78,7 +79,7 @@ public class GregtechMetaTileEntity_IndustrialVacuumFreezer extends GregtechMeta } public GT_Recipe.GT_Recipe_Map getRecipeMap() { - return GT_Recipe.GT_Recipe_Map.sVacuumRecipes; + return Recipe_GT.Gregtech_Recipe_Map.sAdvFreezerRecipes; } public boolean isCorrectMachinePart(final ItemStack aStack) { @@ -90,7 +91,7 @@ public class GregtechMetaTileEntity_IndustrialVacuumFreezer extends GregtechMeta } public boolean checkRecipe(final ItemStack aStack) { - return this.checkRecipeGeneric(4, 100, 200); + return this.checkRecipeGeneric(4, 100, 100); } public boolean checkMachine(final IGregTechTileEntity aBaseMetaTileEntity, final ItemStack aStack) { |