diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp index f8966faf5c..04fdf70267 100644 --- a/src/server/scripts/Spells/spell_paladin.cpp +++ b/src/server/scripts/Spells/spell_paladin.cpp @@ -1131,6 +1131,9 @@ class spell_pal_seal_of_vengeance : public SpellScript if (aura) stacks = aura->GetStackAmount(); + if (stacks && stacks < 5) + stacks++; + damage = ((damage * stacks) / 5); SetHitDamage(damage);