remove ic2 universal cell check
This commit is contained in:
parent
18d8f0c338
commit
c98888e2e5
1 changed files with 2 additions and 2 deletions
|
@ -1723,7 +1723,7 @@ public class GT_ModHandler {
|
||||||
|
|
||||||
public static int getCapsuleCellContainerCount(ItemStack aStack) {
|
public static int getCapsuleCellContainerCount(ItemStack aStack) {
|
||||||
if (aStack == null) return 0;
|
if (aStack == null) return 0;
|
||||||
return GT_Utility.areStacksEqual(GT_Utility.getContainerForFilledItem(aStack, true), ItemList.Cell_Empty.get(1)) || OrePrefixes.cell.contains(aStack) || OrePrefixes.cellPlasma.contains(aStack) || GT_Utility.areStacksEqual(aStack, IC2Items.getItem("fluid_cell", "water")) ? 1 : 0;
|
return GT_Utility.areStacksEqual(GT_Utility.getContainerForFilledItem(aStack, true), ItemList.Cell_Empty.get(1)) || OrePrefixes.cell.contains(aStack) || OrePrefixes.cellPlasma.contains(aStack) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class RecipeBits {
|
public static class RecipeBits {
|
||||||
|
|
Loading…
Reference in a new issue