diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-07-27 10:05:58 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-07-27 10:05:58 +1000 |
commit | 30ee5030dd484a1df590f473c194d943a31783c0 (patch) | |
tree | a03a5182c941070b829d5fae79394ec3539cc1f9 /src/Java/gtPlusPlus/core | |
parent | c680993ec0cfdae50439669c42ffb4a78f3bfb7e (diff) | |
download | GT5-Unofficial-30ee5030dd484a1df590f473c194d943a31783c0.tar.gz GT5-Unofficial-30ee5030dd484a1df590f473c194d943a31783c0.tar.bz2 GT5-Unofficial-30ee5030dd484a1df590f473c194d943a31783c0.zip |
$ Simple Washer now uses a Copper Pipe if custom pipes are not enabled. Fixes #115.
- Removed old class for Blast Smelter recipes.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 3e70adc477..8f75d2e61a 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -727,10 +727,17 @@ public class RECIPES_Machines { ItemStack plateWrought = ItemUtils.getItemStackOfAmountFromOreDict("plateWroughtIron", 1); + ItemStack washerPipe; + if (CORE.configSwitches.enableCustom_Pipes){ + washerPipe = ItemUtils.getItemStackOfAmountFromOreDict("pipeLargeClay", 1); + } + else { + washerPipe = ItemUtils.getItemStackOfAmountFromOreDict("pipeLargeCopper", 1); + } //Add Recipe RecipeUtils.addShapedGregtechRecipe( plateWrought, CI.electricPump_LV, plateWrought, - plateWrought, ItemUtils.getItemStackOfAmountFromOreDict("pipeLargeClay", 1), plateWrought, + plateWrought, washerPipe, plateWrought, plateWrought, CI.machineCasing_ULV, plateWrought, GregtechItemList.SimpleDustWasher.get(1)); |