diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2016-12-16 17:54:43 +0100 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2016-12-26 15:13:42 +0100 |
commit | 6465134c4cd205f2e44292c4d7a5861f1f0a2075 (patch) | |
tree | 02b0a899e83d275aa7f00839ea2d8e0db684503d /src/main/java | |
parent | f10d77ef91ddc4b64f11ed2e8024d92d363e867d (diff) | |
download | GT5-Unofficial-6465134c4cd205f2e44292c4d7a5861f1f0a2075.tar.gz GT5-Unofficial-6465134c4cd205f2e44292c4d7a5861f1f0a2075.tar.bz2 GT5-Unofficial-6465134c4cd205f2e44292c4d7a5861f1f0a2075.zip |
Fix type filter
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java b/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java index 2cd775c70d..781ef052eb 100644 --- a/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java +++ b/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java @@ -125,7 +125,9 @@ public class GT_MetaTileEntity_TypeFilter tFix == OrePrefixes.orePoor || tFix == OrePrefixes.oreRedgranite || tFix == OrePrefixes.oreRich || - tFix == OrePrefixes.oreSmall) tAllowPrefix = true; + tFix == OrePrefixes.oreSmall || + tFix == OrePrefixes.oreBasalt || + tFix == OrePrefixes.oreMarble) tAllowPrefix = true; } } return (super.allowPutStack(aBaseMetaTileEntity, aIndex, aSide, aStack)) && ((this.bNBTAllowed) || (!aStack.hasTagCompound())) && (tAllowPrefix != this.bInvertFilter); |