From 1c68b0550af5a89a17419d13b62c99d373a1bd21 Mon Sep 17 00:00:00 2001 From: zwisus Date: Thu, 7 Sep 2017 19:00:12 +0800 Subject: [PATCH] Seal of the Crusader deals less damage with each attack. Signed-off-by: zwisus --- src/game/WorldHandlers/SpellAuras.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/game/WorldHandlers/SpellAuras.cpp b/src/game/WorldHandlers/SpellAuras.cpp index 2e1ca09a..4dfb107c 100644 --- a/src/game/WorldHandlers/SpellAuras.cpp +++ b/src/game/WorldHandlers/SpellAuras.cpp @@ -1409,6 +1409,14 @@ void Aura::HandleAuraDummy(bool apply, bool Real) } break; } + case SPELLFAMILY_PALADIN: + { + // Seal of the Crusader deals less damage with each attack. -28% damage,multiple tests. + if (GetSpellProto()->SpellIconID == 237 && GetSpellProto()->SpellFamilyFlags & UI64LIT(0x00000200)) + target->HandleStatModifier(UNIT_MOD_DAMAGE_MAINHAND, TOTAL_PCT, -28.0f, apply); + + break; + } } // pet auras