[feature]: Added spectating
This commit is contained in:
parent
9b4424c830
commit
c97714cb75
3044
package-lock.json
generated
3044
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -129,6 +129,13 @@ io.on("connection", (socket) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
socket.on("spectate", (data) => {
|
||||||
|
if (io.sockets.adapter.rooms.has(data)) {
|
||||||
|
console.log(traffic.in + colours.connect(`User ${String(socket.id)} is spectating room ${data}`));
|
||||||
|
socket.join(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
http.listen(port, () => {
|
http.listen(port, () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user