diff --git a/src/game/Map.cpp b/src/game/Map.cpp index 7c00f9dc3..befc8e17c 100644 --- a/src/game/Map.cpp +++ b/src/game/Map.cpp @@ -1717,6 +1717,11 @@ uint16 Map::GetAreaFlag(float x, float y, float z) const // not provided correct areaflag with this hacks switch(areaflag) { + case 1146: // Blade's Edge Mountains + case 1409: // Forge Camp: Wrath (Blade's Edge Mountains) + if (x > 3025.0f && x < 3207.0f && y > 6987.0f && y < 7165.0f && z < 183.0f) + areaflag = 1404; // Blackwing Coven (Blade's Edge Mountains) + break; // Acherus: The Ebon Hold (Plaguelands: The Scarlet Enclave) case 1984: // Plaguelands: The Scarlet Enclave case 2076: // Death's Breach (Plaguelands: The Scarlet Enclave) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 65ae1cdff..a6f00386e 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9564" + #define REVISION_NR "9565" #endif // __REVISION_NR_H__