Skip to content

Commit

Permalink
Fixes OnSessionChanged forward
Browse files Browse the repository at this point in the history
  • Loading branch information
RainOrigami committed Aug 23, 2023
1 parent 27ea7ea commit 3c7f8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BBRAPIModules/RunnerServer.cs
Original file line number Diff line number Diff line change
@@ -149,7 +149,7 @@ public override async Task OnTick()
}
public override async Task OnSessionChanged(long oldSessionID, long newSessionID)
{
await this.invokeOnModules(nameof(OnSessionChanged));
await this.invokeOnModules(nameof(OnSessionChanged), oldSessionID, newSessionID);
}
public override async Task OnDisconnected()
{

0 comments on commit 3c7f8b4

Please sign in to comment.