aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-07-27 10:05:58 +1000
committerAlkalus <draknyte1@hotmail.com>2017-07-27 10:05:58 +1000
commit30ee5030dd484a1df590f473c194d943a31783c0 (patch)
treea03a5182c941070b829d5fae79394ec3539cc1f9 /src/Java/gtPlusPlus/core
parentc680993ec0cfdae50439669c42ffb4a78f3bfb7e (diff)
downloadGT5-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.java9
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));