diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp index 540d27429..d6970de0c 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp @@ -272,6 +272,11 @@ struct npc_inner_demon : public ScriptedAI } } + bool CanBeSeen(Player const* player) override + { + return player && player->GetGUID() == me->GetSummonerGUID(); + } + bool CanReceiveDamage(Unit* attacker) { return attacker && attacker->GetGUID() == me->GetSummonerGUID();