[7430] Fix warror ability heal amount

Signed-off-by: DiSlord <DiSlord@nomail.ru>
This commit is contained in:
DiSlord 2009-03-09 23:00:54 +03:00
parent acce72403c
commit 2240fc49aa
2 changed files with 2 additions and 2 deletions

View file

@ -6588,7 +6588,7 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, Aura* triggeredB
// Bloodthirst (($m/100)% of max health)
case 23880:
{
basepoints0 = int32(GetMaxHealth() * triggerAmount / 10000);
basepoints0 = int32(GetMaxHealth() * triggerAmount / 100);
break;
}
// Shamanistic Rage triggered spell

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7429"
#define REVISION_NR "7430"
#endif // __REVISION_NR_H__