mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 20:02:25 +01:00
DB/SAI: Fix quest A Meeting With The Magister and An Audience With The Arcanist
Closes #1092 Closes #2958
This commit is contained in:
@@ -70,8 +70,9 @@ public:
|
||||
return;
|
||||
|
||||
Player* player = who->GetCharmerOrOwnerPlayerOrPlayerItself();
|
||||
|
||||
if (!player || player->isGameMaster() || player->IsBeingTeleported())
|
||||
|
||||
// If player has Disguise aura for quest A Meeting With The Magister or An Audience With The Arcanist, do not teleport it away but let it pass
|
||||
if (!player || player->isGameMaster() || player->IsBeingTeleported() || player->HasAura(70973) || player->HasAura(70971))
|
||||
return;
|
||||
|
||||
switch (me->GetEntry())
|
||||
|
||||
Reference in New Issue
Block a user