fix #19 wrong claimsize calculation @Red3Tango

This commit is contained in:
Flemmli97 2020-12-11 14:17:24 +01:00
parent c734a30722
commit 18dbea6a23

View File

@ -149,7 +149,7 @@ public class Claim implements IPermissionContainer {
}
public int getPlane() {
return (this.maxX - this.minX) * (this.maxZ - this.minZ);
return (this.maxX - this.minX + 1) * (this.maxZ - this.minZ + 1);
}
/**