Skip to content

Commit

Permalink
Net Guard dummy spell should reduce threat by 50%.
Browse files Browse the repository at this point in the history
Closes #2737
  • Loading branch information
ratkosrb committed Aug 28, 2024
1 parent 2f500b9 commit 619b0d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/game/Spells/SpellAuras.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1747,6 +1747,12 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
}
return;
}
case 11920: // Net Guard
{
if (Creature* pCaster = ToCreature(GetCaster()))
pCaster->GetThreatManager().modifyThreatPercent(target, -50);
return;
}
case 12623: // Suppression
{
if (Creature* pCreature = target->ToCreature())
Expand Down

0 comments on commit 619b0d7

Please sign in to comment.