Skip to content

Commit

Permalink
fix(Scripts/ICC): Make Blood-Queen Lana'thel bite tanks as well (azer…
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7FFF authored Dec 22, 2024
1 parent 0d6a0f8 commit cbdab03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class boss_blood_queen_lana_thel : public CreatureScript
const Map::PlayerList& pl = me->GetMap()->GetPlayers();
for (Map::PlayerList::const_iterator itr = pl.begin(); itr != pl.end(); ++itr)
if (Player* p = itr->GetSource())
if (p->IsAlive() && p != me->GetVictim() && p->GetGUID() != _offtankGUID && !p->IsGameMaster() && p->GetDistance(me) < 70.0f)
if (p->IsAlive() && p->GetDistance(me) < 70.0f)
{
float th = me->GetThreatMgr().getThreatWithoutTemp(p);
if (!target || th > maxThreat)
Expand Down

0 comments on commit cbdab03

Please sign in to comment.