diff options
| author | tartalo <none@none> | 2009-12-01 11:10:12 +0100 |
|---|---|---|
| committer | tartalo <none@none> | 2009-12-01 11:10:12 +0100 |
| commit | 23671382f072339583b2e725f5dd30072fdb5c43 (patch) | |
| tree | 548d69126c22008ec71a3eddd42aa18b10370f29 /src | |
| parent | f6d80f9da41aa5b66489d0746c4c747ec14a4963 (diff) | |
Fix area flag problem, by Spp: The Forlorn Mine. Closes #567
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/Map.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Map.cpp b/src/game/Map.cpp index 97fecfc5cca..aba3f6b1486 100644 --- a/src/game/Map.cpp +++ b/src/game/Map.cpp @@ -1840,6 +1840,9 @@ uint16 Map::GetAreaFlag(float x, float y, float z) const // not provided correct areaflag with this hacks switch(areaflag) { + case 166: // The Forlorn Mine + if (6812.0f < x && x < 7048.0f && -1200.0f > y && y > -1433.0f && 807.0f < z && z < 840.0f) + areaflag = 2213; // Acherus: The Ebon Hold (Plaguelands: The Scarlet Enclave) case 1984: // Plaguelands: The Scarlet Enclave case 2076: // Death's Breach (Plaguelands: The Scarlet Enclave) |
