Fix /0 error (It's a poor fix but it works)

This commit is contained in:
CocoTheOwner 2021-02-23 20:13:38 +01:00
parent 8ea7b09482
commit c2af0e8b48

View File

@ -125,7 +125,7 @@ public class IrisJigsawStructure extends IrisRegistrant
avg += getLoader().getJigsawPieceLoader().load(i).getMax2dDimension();
}
return (avg/pieces.size()) * (((getMaxDepth() + 1) * 2) + 1);
return (avg/(pieces.size() > 0 ? 1 : pieces.size())) * (((getMaxDepth() + 1) * 2) + 1);
}
});
}