Skip to content

Commit

Permalink
Merge pull request #28 from viggojonasson/main
Browse files Browse the repository at this point in the history
fix: send correct kind for CMsgClientHello
  • Loading branch information
icewind1991 authored Nov 28, 2024
2 parents e68462f + 0371ab2 commit 7c83518
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/game_coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ impl GameCoordinator {
self.send_with_kind(CMsgClientHello::default(), GCMsgKind::k_EMsgGCServerHello)
.await?;
} else {
self.send(CMsgClientHello::default()).await?;
self.send_with_kind(CMsgClientHello::default(), GCMsgKind::k_EMsgGCClientHello)
.await?;
}
Ok(())
}
Expand Down

0 comments on commit 7c83518

Please sign in to comment.