diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2018-01-22 23:55:33 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2018-01-22 23:55:33 -0300 |
| commit | c099174ff777d1bf5061f5cdc197ff17bd83fbb7 (patch) | |
| tree | c48689319a23398682db06558e3633759d79614f /src/server/game/Spells/SpellMgr.cpp | |
| parent | 7c9722a4ae08b5f283f6a085a411e37604a7da9f (diff) | |
Core/Misc: fix some /W4 warnings and some reported by GCC 6.3
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 54d0ded9049..88af62ac0cb 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -1446,7 +1446,7 @@ void SpellMgr::LoadSpellGroupStackRules() if (!spellInfo->Effects[i].IsAura()) continue; - int32 auraName = static_cast<int32>(spellInfo->Effects[i].ApplyAuraName); + uint32 auraName = spellInfo->Effects[i].ApplyAuraName; for (std::vector<uint32> const& subGroup : SubGroups) { if (std::find(subGroup.begin(), subGroup.end(), auraName) != subGroup.end()) |
