Codestyle Correction

-1 does it better.
This commit is contained in:
MDIC
2022-04-13 18:35:42 -04:00
parent ba482cf5e4
commit 71a07e2eb9
2 changed files with 4 additions and 4 deletions

View File

@@ -139,8 +139,8 @@ public:
pTarget->CastSpell(pTarget, SHACKLES); // Shackle him in place to ensure no exploit happens for jail break attempt
Aura* dungdesert = pTarget->AddAura(LFG_SPELL_DUNGEON_DESERTER, pTarget);// LFG_SPELL_DUNGEON_DESERTER
Aura* bgdesert = pTarget->AddAura(BG_SPELL_DESERTER, pTarget);// BG_SPELL_DESERTER
dungdesert->SetDuration(-1000 * IN_MILLISECONDS);
bgdesert->SetDuration(-1000 * IN_MILLISECONDS);
dungdesert->SetDuration(-1);
bgdesert->SetDuration(-1);
return true;
}