[7126] Fixed typo in spell 53301 and ranks dummy tick.

Fixed typo in spell 53290 and ranks dummy proc.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
pasdVn 2009-01-20 22:37:59 +01:00 committed by ApoC
parent 921914f87e
commit 1d0d9c6fa2
3 changed files with 3 additions and 3 deletions

View file

@ -6553,7 +6553,7 @@ void Aura::PeriodicDummyTick()
if (!caster)
return;
// Skip 0 tick
if (m_duration < m_modifier.periodictime)
if (m_duration > m_modifier.periodictime)
return;
int32 damage = caster->CalculateSpellDamage(spell, GetEffIndex(), GetBasePoints(), m_target);
damage+=caster->GetTotalAttackPowerValue(RANGED_ATTACK) * 8 / 100;