mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 20:08:37 +00:00
Removed safe_x(), safe_y(), safe_z() from Zone
This commit is contained in:
+5
-3
@@ -488,13 +488,15 @@ void Client::ZonePC(uint32 zoneID, uint32 instance_id, float x, float y, float z
|
||||
return;
|
||||
}
|
||||
iZoneNameLength = strlen(pZoneName);
|
||||
xyz_heading safePoint;
|
||||
|
||||
switch(zm) {
|
||||
case EvacToSafeCoords:
|
||||
case ZoneToSafeCoords:
|
||||
x = zone->safe_x();
|
||||
y = zone->safe_y();
|
||||
z = zone->safe_z();
|
||||
safePoint = zone->GetSafePoint();
|
||||
x = safePoint.m_X;
|
||||
y = safePoint.m_Y;
|
||||
z = safePoint.m_Z;
|
||||
SetHeading(heading);
|
||||
break;
|
||||
case GMSummon:
|
||||
|
||||
Reference in New Issue
Block a user