[7556] Implement hack way check for cave subzone 4223 detection.

This commit is contained in:
VladimirMangos 2009-03-28 00:18:33 +03:00
parent c5d9b6cf7b
commit 8fb9c81e23
2 changed files with 10 additions and 2 deletions

View file

@ -1619,6 +1619,8 @@ float Map::GetHeight(float x, float y, float z, bool pUseVmaps) const
}
}
#include "World.h"
uint16 Map::GetAreaFlag(float x, float y, float z) const
{
uint16 areaflag;
@ -1646,7 +1648,13 @@ uint16 Map::GetAreaFlag(float x, float y, float z) const
case 1593:
case 2484:
case 2492:
if( (x < 6116 && x > 5568) && (y < 982 && y > 282) && z > 563.0f) areaflag = 2153; break;
if (x > 5568.0f && x < 6116.0f && y > 282.0f && y < 982.0f && z > 563.0f) areaflag = 2153; break;
// Maw of Neltharion (cave)
case 164: // Dragonblight
case 1797: // Obsidian Dragonshrine (Dragonblight)
case 1827: // Wintergrasp
case 2591: // The Cauldron of Flames (Wintergrasp)
if (x > 4364.0f && x < 4632.0f && y > 1545.0f && y < 1886.0f && z < 200.0f) areaflag = 1853; break;
}
return areaflag;