Skip to content

Commit

Permalink
Exclude Dalaran Sewer Exit Pipe from GUARD teleport checks
Browse files Browse the repository at this point in the history
fixes horde player teleport when dalaran sewer pipe is entered
closes #4467
  • Loading branch information
chaosua authored Jan 21, 2025
1 parent 7725610 commit 03d2737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/scripts/Northrend/zone_dalaran.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class npc_mageguard_dalaran : public CreatureScript

void MoveInLineOfSight(Unit* who) override
{
if (!who || !who->IsInWorld() || who->GetZoneId() != 4395)
if (!who || !who->IsInWorld() || who->GetZoneId() != 4395 || who->GetAreaId()==4569)
return;

if (!me->IsWithinDist(who, 5.0f, false))
Expand Down

0 comments on commit 03d2737

Please sign in to comment.