aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-07-04 22:28:48 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-07-04 22:28:48 +1000
commitbfb18b4e2fd22906c68c3740220ef3f3054fbf7e (patch)
treee665261f9851c3d2c513f34c72584940c944e04a /src/Java
parent237f99ded74e392f3571c3d7c090224c68588cea (diff)
downloadGT5-Unofficial-bfb18b4e2fd22906c68c3740220ef3f3054fbf7e.tar.gz
GT5-Unofficial-bfb18b4e2fd22906c68c3740220ef3f3054fbf7e.tar.bz2
GT5-Unofficial-bfb18b4e2fd22906c68c3740220ef3f3054fbf7e.zip
$ Fixed Simple Washer recipe handling.
% Tweaked wash time by 4x.
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaTileEntity_BasicWasher.java6
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java2
2 files changed, 1 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaTileEntity_BasicWasher.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaTileEntity_BasicWasher.java
index c2c4f874d8..510e180b25 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaTileEntity_BasicWasher.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaTileEntity_BasicWasher.java
@@ -62,10 +62,4 @@ public class GregtechMetaTileEntity_BasicWasher extends GT_MetaTileEntity_BasicM
return 8000;
}
- @Override
- public int checkRecipe() {
- int sr = super.checkRecipe();
- System.out.println(""+sr);
- return super.checkRecipe();
- }
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java
index 7057513df7..d3e8707074 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java
@@ -29,7 +29,7 @@ public class GregtechSimpleWasher {
null,
new FluidStack[]{FluidUtils.getFluidStack("water", 100)},
null,
- 5,
+ 20,
8,
0);
}