forked from MagicBane/Server
Account for vorringia parenting.
This commit is contained in:
@@ -425,22 +425,31 @@ public class HeightMap {
|
||||
|
||||
Zone parentZone = currentZone.getParent();
|
||||
HeightMap heightMap = currentZone.getHeightMap();
|
||||
|
||||
//find the next parents heightmap if the currentzone heightmap is null.
|
||||
|
||||
while (heightMap == null) {
|
||||
|
||||
if (currentZone == ZoneManager.getSeaFloor()) {
|
||||
if (currentZone == ZoneManager.getSeaFloor())
|
||||
break;
|
||||
}
|
||||
|
||||
currentZone = currentZone.getParent();
|
||||
heightMap = currentZone.getHeightMap();
|
||||
|
||||
parentZone = currentZone.getParent();
|
||||
}
|
||||
if ((heightMap == null) || (currentZone == ZoneManager.getSeaFloor())) {
|
||||
|
||||
return currentZone.getAbsY();
|
||||
// Account for databases where the continental
|
||||
// heightmaps are driven by the zone above them.
|
||||
|
||||
if (parentZone.getHeightMap() == null)
|
||||
parentZone = parentZone.getParent();
|
||||
|
||||
}
|
||||
|
||||
if ((heightMap == null) || (currentZone == ZoneManager.getSeaFloor()))
|
||||
return currentZone.getAbsY();
|
||||
|
||||
|
||||
Vector2f zoneLoc = ZoneManager.worldToZoneSpace(worldLoc, currentZone);
|
||||
Vector3fImmutable localLocFromCenter = ZoneManager.worldToLocal(worldLoc, currentZone);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user