mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[7556] Implement hack way check for cave subzone 4223 detection.
This commit is contained in:
parent
c5d9b6cf7b
commit
8fb9c81e23
2 changed files with 10 additions and 2 deletions
|
|
@ -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 Map::GetAreaFlag(float x, float y, float z) const
|
||||||
{
|
{
|
||||||
uint16 areaflag;
|
uint16 areaflag;
|
||||||
|
|
@ -1646,7 +1648,13 @@ uint16 Map::GetAreaFlag(float x, float y, float z) const
|
||||||
case 1593:
|
case 1593:
|
||||||
case 2484:
|
case 2484:
|
||||||
case 2492:
|
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;
|
return areaflag;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7555"
|
#define REVISION_NR "7556"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue