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:29 +0100 |
commit | 3a8b8bc3803b51df0433634a29562795c71f4bd5 (patch) | |
tree | d62109eec79e0095e74012f6dadfea104418c0b0 /src/main/java/gregtech | |
parent | f9593e403eda8885af7027814cef52b8bb599274 (diff) | |
download | GT5-Unofficial-3a8b8bc3803b51df0433634a29562795c71f4bd5.tar.gz GT5-Unofficial-3a8b8bc3803b51df0433634a29562795c71f4bd5.tar.bz2 GT5-Unofficial-3a8b8bc3803b51df0433634a29562795c71f4bd5.zip |
Fix type filter
Diffstat (limited to 'src/main/java/gregtech')
-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); |