Skip to content

Commit

Permalink
fix: Use wss as our matchmaking connection
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Jan 17, 2024
1 parent 6ee2dab commit f86ba4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
binary: ace-of-the-heavens
add_binaries_to_github_release: true
add_binaries_to_github_release: false
itch_target: PraxTube/ace-of-the-heavens

jobs:
Expand Down
2 changes: 1 addition & 1 deletion src/network/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn start_matchbox_socket(
credentials: Res<Assets<TurnCredentials>>,
assets: Res<GameAssets>,
) {
let room_url = format!("ws://rancic.org:3536/?next={}", PLAYER_COUNT);
let room_url = format!("wss://rancic.org/matchmaking?next={}", PLAYER_COUNT);
info!("connection to matchbox server: {}", room_url);

let credentials = credentials.get(&assets.turn_credentials);
Expand Down

0 comments on commit f86ba4d

Please sign in to comment.