mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-06 02:30:26 -08:00
fix(Scripts/Karazhan): use size_t within loop in boss_shade_of_aran:Reset()
This commit is contained in:
parent
c4b030f3ba
commit
1f71aaef25
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ struct boss_shade_of_aran : public BossAI
|
|||
_drinking = false;
|
||||
_hasDrunk = false;
|
||||
|
||||
for (int i = 0; i < immuneSpells.size(); i++)
|
||||
for (size_t i = 0; i < immuneSpells.size(); i++)
|
||||
me->ApplySpellImmune(0, IMMUNITY_ID, immuneSpells[i], true);
|
||||
|
||||
if (GameObject* libraryDoor = instance->instance->GetGameObject(instance->GetGuidData(DATA_GO_LIBRARY_DOOR)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue