Skip to content

Commit

Permalink
fix(Scripts/Raids): Debuff Mind Exhaustion on Razorgore should be app…
Browse files Browse the repository at this point in the history
…ly on start of mind control. (#10835)

Fixes #10769
  • Loading branch information
UltraNix committed Mar 6, 2022
1 parent a74e57f commit 1392cee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class boss_razorgore : public CreatureScript

void OnCharmed(bool apply) override
{
if (!apply)
if (apply)
{
if (Unit* charmer = ObjectAccessor::GetUnit(*me, _charmerGUID))
{
Expand Down

0 comments on commit 1392cee

Please sign in to comment.