Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
forgot a pair of ()
  • Loading branch information
TheFatBastid authored Oct 8, 2023
1 parent 76eac4c commit b2ebc66
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 @@ -48,7 +48,7 @@ public State(Info info)

public void Subscribe(Action action, Info info)
{
_addStates.Add(action, new State(info));
_addStates.Add((action, new State(info)));
}

public void Unsubscribe(Action action)
Expand Down

0 comments on commit b2ebc66

Please sign in to comment.