fix(Scripts/Northrend): Exclude Dalaran Sewer Exit Pipe from GUARD teleport checks (#21222)
This commit is contained in:
parent
994eccebdf
commit
775febad9c
1 changed files with 3 additions and 1 deletions
|
|
@ -444,7 +444,9 @@ public:
|
|||
|
||||
void MoveInLineOfSight(Unit* who) override
|
||||
{
|
||||
if (!who || !who->IsInWorld() || who->GetZoneId() != 4395)
|
||||
// 4395 Dalaran
|
||||
// 4569 Sewer Exit Pipe
|
||||
if (!who || !who->IsInWorld()|| who->GetZoneId() != 4395 || who->GetAreaId() == 4569)
|
||||
return;
|
||||
|
||||
if (!me->IsWithinDist(who, 5.0f, false))
|
||||
|
|
|
|||
Loading…
Reference in a new issue