Fixes #1802
This commit is contained in:
@@ -21,7 +21,11 @@ public class StackListFluid implements IStackList<FluidStack> {
|
|||||||
|
|
||||||
for (FluidStack otherStack : stacks.get(stack.getFluid())) {
|
for (FluidStack otherStack : stacks.get(stack.getFluid())) {
|
||||||
if (stack.isFluidEqual(otherStack)) {
|
if (stack.isFluidEqual(otherStack)) {
|
||||||
otherStack.amount += size;
|
if ((long) otherStack.amount + (long) size > Integer.MAX_VALUE) {
|
||||||
|
otherStack.amount = Integer.MAX_VALUE;
|
||||||
|
} else {
|
||||||
|
otherStack.amount += size;
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user