Skip to content

Commit

Permalink
More updates to websocket
Browse files Browse the repository at this point in the history
  • Loading branch information
insulationman committed Sep 1, 2023
1 parent d552764 commit ab5560f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Scenes/Game/OrustScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export default class OrustScene extends Phaser.Scene {

private initGhost(): void {
this.websocket = new WebSocket("wss://realorfakehub.azurewebsites.net");
// this.websocket = new WebSocket("ws://localhost:5087");

this.websocket.onmessage = (event) => {
const data = JSON.parse(event.data);
Expand Down

0 comments on commit ab5560f

Please sign in to comment.