[7397] Implement above ground zone 4395 detection. Author: GriffonHeart

By hack code until proper multilevel zone data store not implemented.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-07 10:42:54 -06:00
parent acceab49c6
commit 99c765cec3
2 changed files with 6 additions and 1 deletions

View File

@@ -1370,6 +1370,11 @@ uint16 Map::GetAreaFlag(float x, float y, float z) const
case 856: // The Noxious Glade (Eastern Plaguelands)
case 2456: // Death's Breach (Eastern Plaguelands)
if(z > 350.0f) areaflag = 1950; break;
// Dalaran
case 1593:
case 2484:
case 2492:
if( (x < 6116 && x > 5568) && (y < 982 && y > 282) && z > 563.0f) areaflag = 2153; break;
}
return areaflag;