diff options
author | Draknyte1 <3060479+draknyte1@users.noreply.github.com> | 2018-06-17 15:04:41 +1000 |
---|---|---|
committer | Draknyte1 <3060479+draknyte1@users.noreply.github.com> | 2018-06-17 15:04:41 +1000 |
commit | 2e41ca62618aebf5f110c55f44a4f61029b6ebea (patch) | |
tree | 7cc344d1846ff97bf26abdd57def12042490cbc9 /src/Java/gtPlusPlus/core/recipe | |
parent | 3655457016c99e60197271a6b3624196539e1c3b (diff) | |
download | GT5-Unofficial-2e41ca62618aebf5f110c55f44a4f61029b6ebea.tar.gz GT5-Unofficial-2e41ca62618aebf5f110c55f44a4f61029b6ebea.tar.bz2 GT5-Unofficial-2e41ca62618aebf5f110c55f44a4f61029b6ebea.zip |
+ Added low efficiency mode to the Pollution Scrubbers, allowing Rotors to be saved. Closes #312.
+ Added ability for Ore Wash Plant to hand Chemical Bathing. Closes #289.
% Made Multi-Machine now have a Fluid Extractor mode, this has replaced the Distillery mode. Closes #306.
% Updated Multi-Machine manual, to reflect mode C being enabled and it's new Fluid Extractor mode.
$ Fixed High Temp Pipe capacities.
$ Fixed Ore Wash Plant Tooltip. Closes #302.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index f43f83c79c..b73b82ac8b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1,24 +1,19 @@ package gtPlusPlus.core.recipe; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; -import net.minecraft.item.ItemStack; - import gregtech.api.enums.*; import gregtech.api.util.GT_ModHandler; - import gtPlusPlus.api.objects.Logger; import gtPlusPlus.core.block.ModBlocks; import gtPlusPlus.core.item.ModItems; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.lib.LoadedMods; import gtPlusPlus.core.material.ALLOY; -import gtPlusPlus.core.material.ELEMENT; import gtPlusPlus.core.recipe.common.CI; -import gtPlusPlus.core.util.minecraft.FluidUtils; -import gtPlusPlus.core.util.minecraft.ItemUtils; -import gtPlusPlus.core.util.minecraft.RecipeUtils; +import gtPlusPlus.core.util.minecraft.*; import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; +import net.minecraft.init.Blocks; +import net.minecraft.init.Items; +import net.minecraft.item.ItemStack; public class RECIPES_Machines { @@ -1278,7 +1273,7 @@ public class RECIPES_Machines { ItemStack o_Lathe = ItemList.Machine_HV_Lathe.get(1); ItemStack o_Electromagnet = ItemList.Machine_HV_Polarizer.get(1); ItemStack o_Fermenter = ItemList.Machine_HV_Fermenter.get(1); - ItemStack o_Distillery = ItemList.Machine_HV_Distillery.get(1); + ItemStack o_Distillery = ItemList.Machine_HV_FluidExtractor.get(1); ItemStack o_Extractor = ItemList.Machine_HV_Extractor.get(1); RecipeUtils.recipeBuilder( plate, CI.craftingToolHammer_Hard, plate, |