aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellMgr.cpp
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2018-01-22 23:55:33 -0300
committerariel- <ariel-@users.noreply.github.com>2018-01-22 23:55:33 -0300
commitc099174ff777d1bf5061f5cdc197ff17bd83fbb7 (patch)
treec48689319a23398682db06558e3633759d79614f /src/server/game/Spells/SpellMgr.cpp
parent7c9722a4ae08b5f283f6a085a411e37604a7da9f (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.cpp2
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())