-.- Both null combinations.
This commit is contained in:
parent
1a9e13f880
commit
ea2c07c727
1 changed files with 1 additions and 0 deletions
|
@ -63,6 +63,7 @@ public abstract class FluidContainerRegistry
|
||||||
if (container.getItemDamage() != ck.container.getItemDamage()) return false;
|
if (container.getItemDamage() != ck.container.getItemDamage()) return false;
|
||||||
if (fluid == null && ck.fluid != null) return false;
|
if (fluid == null && ck.fluid != null) return false;
|
||||||
if (fluid != null && ck.fluid == null) return false;
|
if (fluid != null && ck.fluid == null) return false;
|
||||||
|
if (fluid == null && ck.fluid == null) return true;
|
||||||
if (fluid.fluidID != ck.fluid.fluidID) return false;
|
if (fluid.fluidID != ck.fluid.fluidID) return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue