fix(Scripts/AQ20): Set General Rajaxx's Thundercrash to min 100 dmg (#20461)

This commit is contained in:
avarishd
2024-11-06 17:00:57 +02:00
committed by GitHub
parent 77bd0c1623
commit 6c69bd5b53

View File

@@ -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);