mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-18 14:10:18 -04:00
Core: Fix some warnings
--HG-- branch : trunk
This commit is contained in:
@@ -214,7 +214,7 @@ void SimpleAI::UpdateAI(const uint32 diff)
|
||||
if (Spell_Timer[i] <= diff)
|
||||
{
|
||||
//Check if this is a percentage based
|
||||
if (Spell[i].First_Cast < 0 && Spell[i].First_Cast > -100 && me->GetHealth()*100 / me->GetMaxHealth() > -Spell[i].First_Cast)
|
||||
if (Spell[i].First_Cast < 0 && Spell[i].First_Cast > -100 && me->GetHealth()*100 / me->GetMaxHealth() > uint32(-Spell[i].First_Cast))
|
||||
continue;
|
||||
|
||||
//Check Current spell
|
||||
|
||||
Reference in New Issue
Block a user