Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp
- index 76b371b..71f512a 100644
- --- a/src/server/game/Entities/Unit/Unit.cpp
- +++ b/src/server/game/Entities/Unit/Unit.cpp
- @@ -8979,6 +8979,15 @@ bool Unit::HandleAuraProc(Unit * pVictim, uint32 damage, Aura * triggeredByAura,
- }
- return true;
- }
- + // Repentance aura drop
- + else if (dummySpell->Id == 20066)
- + {
- + *handled = true;
- + if (procSpell && procSpell->SpellFamilyName == SPELLFAMILY_PALADIN &&
- + procSpell->SpellFamilyFlags[0] == 0x20000000 && procSpell->SpellFamilyFlags[1] == 0x00000800)
- + return false;
- + return true;
- + }
- break;
- }
- case SPELLFAMILY_SHAMAN:
Advertisement
Add Comment
Please, Sign In to add comment