fix(Scripts/AQ20): Set General Rajaxx's Thundercrash to min 100 dmg (#20461)
This commit is contained in:
parent
77bd0c1623
commit
6c69bd5b53
1 changed files with 2 additions and 2 deletions
|
|
@ -133,9 +133,9 @@ class spell_rajaxx_thundercrash : public SpellScript
|
|||
void HandleDamageCalc(SpellEffIndex /*effIndex*/)
|
||||
{
|
||||
int32 damage = GetHitUnit()->GetHealth() / 2;
|
||||
if (damage < 200)
|
||||
if (damage < 100)
|
||||
{
|
||||
damage = 200;
|
||||
damage = 100;
|
||||
}
|
||||
|
||||
SetHitDamage(damage);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue