diff --git a/src/engine/objects/Zone.java b/src/engine/objects/Zone.java index 21dc294e..9280ca6a 100644 --- a/src/engine/objects/Zone.java +++ b/src/engine/objects/Zone.java @@ -247,8 +247,15 @@ public class Zone extends AbstractGameObject { // Zone AABB is set here as it's coordinate space is world requiring a parent. this.setBounds(); + if (ZoneManager.getSeaFloor().equals(this)) { + this.seaLevel = 0; + return; + } + if (this.getHeightMap() != null && this.getHeightMap().getSeaLevel() != 0) - this.seaLevel = this.getHeightMap().getSeaLevel(); + this.seaLevel = this.worldAltitude + this.getHeightMap().getSeaLevel(); + else + this.seaLevel = this.parent.seaLevel; }