diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-09-27 20:05:36 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-09-27 20:05:36 +0200 |
commit | 89f490bdcdf88c2576c17218926e89b1082ae682 (patch) | |
tree | 356a0be852515b56736f21bc60af3649c4153032 /src/server/game/Spells/SpellInfo.cpp | |
parent | be04c17916aa35173ed328eb27cb5f246bc8b863 (diff) |
Core/DataStores: Removed overriding field sign type based on db2 column compression
Diffstat (limited to 'src/server/game/Spells/SpellInfo.cpp')
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index e72227434cb..d85b5825de1 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -1548,7 +1548,7 @@ bool SpellInfo::IsAbilityOfSkillType(uint32 skillType) const SkillLineAbilityMapBounds bounds = sSpellMgr->GetSkillLineAbilityMapBounds(Id); for (SkillLineAbilityMap::const_iterator _spell_idx = bounds.first; _spell_idx != bounds.second; ++_spell_idx) - if (_spell_idx->second->SkillLine == int32(skillType)) + if (_spell_idx->second->SkillLine == skillType) return true; return false; |