aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2016-12-16 17:54:43 +0100
committerBlood-Asp <bloodasphendrik@gmail.com>2016-12-16 17:54:43 +0100
commitcca28f29fae75505d28c2f7ca380954cfda69356 (patch)
treec795f42c0e1e05e4797bfd8eb41f8d99973f2f39 /src/main/java/gregtech/common
parent650ec1a80098dc1cd1314d91d4ef4884f47151e4 (diff)
downloadGT5-Unofficial-cca28f29fae75505d28c2f7ca380954cfda69356.tar.gz
GT5-Unofficial-cca28f29fae75505d28c2f7ca380954cfda69356.tar.bz2
GT5-Unofficial-cca28f29fae75505d28c2f7ca380954cfda69356.zip
Add mable and basalt ores to ore typefilter
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_TypeFilter.java4
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 596ee77bcb..287647975b 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);