fix claim below 0 not working #108

This commit is contained in:
Flemmli97 2021-12-19 16:05:45 +01:00
parent d33c2cbaad
commit caae5fd06f
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Flan 1.6.5
======================
- Fix claims below 0 not working
Flan 1.6.4
======================
- Add back all integrations with other mods

View File

@ -93,7 +93,7 @@ public class Claim implements IPermissionContainer {
this.minZ = Math.min(z1, z2);
this.maxX = Math.max(x1, x2);
this.maxZ = Math.max(z1, z2);
this.minY = Math.max(0, minY);
this.minY = Math.max(world.getMinBuildHeight(), minY);
this.owner = creator;
this.world = world;
this.homePos = this.getInitCenterPos();

View File

@ -10,7 +10,7 @@ forge_version=38.0.8
loader_version=0.12.8
# Mod Properties
mod_version=1.6.4
mod_version=1.6.5
maven_group=io.github.flemmli97
archives_base_name=flan