Live location tracking and playback for the game "manhunt"

Pass correct URL params to signal server

bwc9876.dev e91e3b9a 1125fe47

verified
+5 -1
+3
TODO.md
··· 3 3 ## Ben 4 4 5 5 - [ ] Transport : Packet splitting 6 + - [ ] Transport : Handle Errors 7 + - [ ] Transport : Mark game started on client 6 8 - [ ] State : Event history tracking 7 9 - [ ] State : Post game sync 8 10 - [ ] API : Handling Profile Syncing ··· 12 14 - [ ] Meta : CI Setup 13 15 - [ ] Meta : README Instructions 14 16 - [x] Meta : Recipes for type binding generation 17 + - [x] Singaling: All of it
+2 -1
backend/src/lobby.rs
··· 55 55 ) -> Self { 56 56 Self { 57 57 transport: Arc::new(MatchboxTransport::new(&format!( 58 - "{ws_url_base}/{join_code}" 58 + "{ws_url_base}/{join_code}{}", 59 + if host { "?create" } else { "" } 59 60 ))), 60 61 is_host: host, 61 62 self_profile: profile,