Fix claim bounding boxes not covering whole claim (#1145)

This commit is contained in:
Adam
2020-12-10 09:56:14 -08:00
committed by GitHub
parent 03ab872f6d
commit 3350e2a0bf
@@ -143,7 +143,7 @@ public class BoundingBox implements Cloneable
*/
public BoundingBox(Claim claim)
{
this(claim.getLesserBoundaryCorner(), claim.getGreaterBoundaryCorner(), false);
this(claim.getLesserBoundaryCorner(), claim.getGreaterBoundaryCorner().clone().add(0, 255, 0), false);
}
/**