Core/Spells: Properly fix Ignite

This commit is contained in:
tobmaps
2011-07-24 19:37:57 +07:00
parent ef57bc3439
commit 55b0e550b9
2 changed files with 3 additions and 3 deletions

View File

@@ -5835,8 +5835,8 @@ bool Unit::HandleDummyAuraProc(Unit* victim, uint32 damage, AuraEffect* triggere
return false;
}
// 4 damage tick
basepoints0 /= 4;
// 2 damage tick
basepoints0 /= 2;
triggered_spell_id = 12654;
// Add remaining ticks to damage done
basepoints0 += victim->GetRemainingPeriodicAmount(GetGUID(), triggered_spell_id, SPELL_AURA_PERIODIC_DAMAGE);

View File

@@ -50,4 +50,4 @@ class ZoneScript
virtual void ProcessEvent(WorldObject* /*obj*/, uint32 /*eventId*/) {}
};
#endif
#endif