diff options
-rw-r--r-- | src/server/scripts/Spells/spell_rogue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_rogue.cpp b/src/server/scripts/Spells/spell_rogue.cpp index 0a8ba0a7e0a..60e930f6c94 100644 --- a/src/server/scripts/Spells/spell_rogue.cpp +++ b/src/server/scripts/Spells/spell_rogue.cpp @@ -38,7 +38,7 @@ class spell_rog_eviscerate : public SpellScript // Damage: effectValue + (basePoints * Combo) + (AP * 0.091 * Combo) void CalculateDamage(Unit* /*victim*/, int32& /*damage*/, int32& flatMod, float& /*pctMod*/) const { - uint32 combo = GetSpell()->m_spentComboPoints; + int32 combo = GetSpell()->m_spentComboPoints; flatMod += (GetSpellInfo()->GetEffect(EFFECT_0).BasePoints * combo) + (GetCaster()->GetTotalAttackPowerValue(BASE_ATTACK) * 0.091f * combo); } |