diff options
Diffstat (limited to 'src/game/Spells/SpellInfo.cpp')
-rw-r--r-- | src/game/Spells/SpellInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spells/SpellInfo.cpp b/src/game/Spells/SpellInfo.cpp index c61e9463b5..46d5b708b4 100644 --- a/src/game/Spells/SpellInfo.cpp +++ b/src/game/Spells/SpellInfo.cpp @@ -2018,7 +2018,7 @@ AuraStateType SpellInfo::LoadAuraState() const uint32 StealthPreventionSpellList[] = { 9991, 35331, 9806, 35325 }; // Goes through each of the spells and identifies them as Stealth Prevention Spell. - for (int i = 0; i < sizeof(StealthPreventionSpellList) / sizeof(uint32); i++) { + for (uint32 i = 0; i < sizeof(StealthPreventionSpellList) / sizeof(uint32); i++) { if (Id == StealthPreventionSpellList[i]) { return AURA_STATE_FAERIE_FIRE; } |