Fix type filter

This commit is contained in:
Blood-Asp 2016-12-16 17:54:43 +01:00 committed by Technus
parent f10d77ef91
commit 6465134c4c

View file

@ -125,7 +125,9 @@ public class GT_MetaTileEntity_TypeFilter
tFix == OrePrefixes.orePoor || tFix == OrePrefixes.orePoor ||
tFix == OrePrefixes.oreRedgranite || tFix == OrePrefixes.oreRedgranite ||
tFix == OrePrefixes.oreRich || 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); return (super.allowPutStack(aBaseMetaTileEntity, aIndex, aSide, aStack)) && ((this.bNBTAllowed) || (!aStack.hasTagCompound())) && (tAllowPrefix != this.bInvertFilter);