[7419] Fixed some type convertion warnings.

This commit is contained in:
VladimirMangos 2009-03-09 08:22:29 +03:00
parent bf718ea961
commit 4dad8f40d0
4 changed files with 19 additions and 15 deletions

View file

@ -1255,7 +1255,7 @@ void Spell::EffectDummy(uint32 i)
if (m_spellInfo->SpellFamilyFlags & 0x0000000000040000LL)
{
// In 303 exist spirit depend
uint32 spirit = m_caster->GetStat(STAT_SPIRIT);
uint32 spirit = uint32(m_caster->GetStat(STAT_SPIRIT));
switch (m_spellInfo->Id)
{
case 1454: damage+=spirit; break;