Skip to content

Commit

Permalink
Fixed an eye-rollingly stupid mistake I made (YARC-Official#583)
Browse files Browse the repository at this point in the history
Remove? Add! Add? Remove!
  • Loading branch information
TheFatBastid authored Oct 18, 2023
1 parent a2db97d commit 3f596f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script/Gameplay/BeatEventManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void Subscribe(Action action, Info info)

public void Unsubscribe(Action action)
{
_removeStates.Remove(action);
_removeStates.Add(action);
}

public void ResetTimers()
Expand Down

0 comments on commit 3f596f3

Please sign in to comment.