Skip to content

Commit

Permalink
Fix bug from copy and pasting
Browse files Browse the repository at this point in the history
  • Loading branch information
MattEqualsCoder authored Dec 31, 2024
1 parent 8290a82 commit 3bcdabb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void EnableCheats(float? confidence = null)
AddUndo(() =>
{
CheatsEnabled = false;
ToggledShaktoolMode?.Invoke(this, new TrackerEventArgs(confidence));
CheatsToggled?.Invoke(this, new TrackerEventArgs(confidence));
});
}
else
Expand All @@ -169,7 +169,7 @@ public void DisableCheats(float? confidence = null)
AddUndo(() =>
{
CheatsEnabled = true;
ToggledShaktoolMode?.Invoke(this, new TrackerEventArgs(confidence));
CheatsToggled?.Invoke(this, new TrackerEventArgs(confidence));
});
}
else
Expand Down

0 comments on commit 3bcdabb

Please sign in to comment.