feat(tour): added tournament broadcast
This commit is contained in:
parent
eccc763644
commit
8e6ff3aedc
10 changed files with 157 additions and 41 deletions
|
|
@ -296,6 +296,11 @@ function initChatSocket() {
|
|||
socket.on("nextGame", (message: string) => {
|
||||
openMessagePopup(message);
|
||||
});
|
||||
|
||||
//receives broadcast of the next GAME
|
||||
socket.on("tourStatus", (message: string) => {
|
||||
openMessagePopup(message);
|
||||
});
|
||||
|
||||
socket.on("listBud", async (myBuddies: string[]) => {
|
||||
const buddies = document.getElementById(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue