Fix claim bounding boxes not covering whole claim (#1145)
This commit is contained in:
parent
03ab872f6d
commit
3350e2a0bf
|
|
@ -143,7 +143,7 @@ public class BoundingBox implements Cloneable
|
||||||
*/
|
*/
|
||||||
public BoundingBox(Claim claim)
|
public BoundingBox(Claim claim)
|
||||||
{
|
{
|
||||||
this(claim.getLesserBoundaryCorner(), claim.getGreaterBoundaryCorner(), false);
|
this(claim.getLesserBoundaryCorner(), claim.getGreaterBoundaryCorner().clone().add(0, 255, 0), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user