mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
fix(Scripts/AQ20): Set General Rajaxx's Thundercrash to min 100 dmg (#20461)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user