diff options
| author | ccrs <ccrs@users.noreply.github.com> | 2025-10-14 20:04:06 +0200 |
|---|---|---|
| committer | ccrs <ccrs@users.noreply.github.com> | 2025-10-14 20:04:06 +0200 |
| commit | 48cd3c91423a03581203411ff6cea600d4518730 (patch) | |
| tree | 9cd8999b27d01a6fe76995d54b1f7a8f41095973 /src/server/scripts/Outland | |
| parent | 100790c0e22c2cf597bccd33971c6d1b856b8087 (diff) | |
Scripts/Misc: replace GetThreatListSize with GetThreatListPlayerCount to achieve the desired behavior
Diffstat (limited to 'src/server/scripts/Outland')
| -rw-r--r-- | src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp index 937fbbc8fab..4dadfb2e7ad 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp @@ -138,7 +138,7 @@ struct boss_blackheart_the_inciter : public BossAI { case EVENT_INCITE_CHAOS: { - if (me->GetThreatManager().GetThreatListSize() > 1) + if (me->GetThreatManager().GetThreatListPlayerCount() > 1) { ResetThreatList(); DoCastSelf(SPELL_INCITE_CHAOS); |
