diff options
| author | Alkalus <Draknyte1@hotmail.com> | 2020-06-02 13:46:43 +0100 |
|---|---|---|
| committer | Alkalus <Draknyte1@hotmail.com> | 2020-06-02 13:46:43 +0100 |
| commit | 96a83ee47f994c922aba625b67645661bc8cb4fe (patch) | |
| tree | 1c7cbd37b9273cc1a1152cfe4d0f00fc8390bf5a /src/Java/gtPlusPlus/xmod/gregtech/registration | |
| parent | 2f3e724c7746a0cc577e2dab4527d262b1e553d4 (diff) | |
| download | GT5-Unofficial-96a83ee47f994c922aba625b67645661bc8cb4fe.tar.gz GT5-Unofficial-96a83ee47f994c922aba625b67645661bc8cb4fe.tar.bz2 GT5-Unofficial-96a83ee47f994c922aba625b67645661bc8cb4fe.zip | |
- Removed placeholder map which was used to prevent BW crashes.
% Made the Simple washer ignore certain impure dusts if GTNH is loaded.
% Updated ChemPlant User manual to reflect requirement of Catalyst Bus.
$ Fixed handling of recipe maps which don't use cells.
$ Fixed Chem Plant not actually processing recipes.
$ Made the Catalyst Hatch a lower tier. (Fixes Chem Plant requiring ZPM tier hulls)
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java index d3c1368ad3..d2087b22f4 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSimpleWasher.java @@ -41,11 +41,18 @@ public class GregtechSimpleWasher { } private static boolean generateDirtyDustRecipes(){ + boolean disablePlat = CORE.GTNH; int mRecipeCount = 0; // Generate Recipe Map for the Dust Washer. ItemStack dustClean; ItemStack dustDirty; - for (Materials v : Materials.values()) { + for (Materials v : Materials.values()) { + if (disablePlat) { + if (v == Materials.Platinum || v == Materials.Osmium || v == Materials.Iridium || v == Materials.Palladium) { + continue; + } + } + dustClean = GT_OreDictUnificator.get(OrePrefixes.dust, v, 1L); dustDirty = GT_OreDictUnificator.get(OrePrefixes.dustImpure, v, 1L); if (dustClean != null && dustDirty != null) { |
