diff --git a/src/engine/objects/Zone.java b/src/engine/objects/Zone.java
index 07b00520..edec6d7a 100644
--- a/src/engine/objects/Zone.java
+++ b/src/engine/objects/Zone.java
@@ -231,8 +231,6 @@ public class Zone extends AbstractGameObject {
 
         // Zone AABB is set here as it's coordinate space is world requiring a parent.
 
-        this.setBounds();
-
         // Seafloor
 
         if (this.parent == null) {
@@ -240,6 +238,7 @@ public class Zone extends AbstractGameObject {
             this.absY = MBServerStatics.SEA_FLOOR_ALTITUDE;
             this.absZ = this.zCoord;
             this.seaLevel = 0;
+            this.setBounds();
             return;
         }
 
@@ -252,6 +251,8 @@ public class Zone extends AbstractGameObject {
             this.maxLvl = this.parent.maxLvl;
         }
 
+        this.setBounds();
+
         if (this.getHeightMap() != null && this.getHeightMap().getSeaLevel() != 0)
             this.seaLevel = this.worldAltitude + this.getHeightMap().getSeaLevel();
         else