Skip to content

Commit

Permalink
Fixed session used for server
Browse files Browse the repository at this point in the history
  • Loading branch information
SparrowBrain committed Sep 14, 2024
1 parent c39737b commit c03c2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BuddySave/Core/GamingSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public async Task Play(GameSave gameSave, Session session, ServerParameters serv
var serverTask = Task.CompletedTask;
if (!lockExists)
{
serverTask = serverSession.RunServerWithAutoSave(gameSave, sessionToConnectTo, serverParameters);
serverTask = serverSession.RunServerWithAutoSave(gameSave, session, serverParameters);
}

clientSession.RunClient(sessionToConnectTo, clientParameters);
Expand Down

0 comments on commit c03c2b6

Please sign in to comment.