This commit is contained in:
Evert Prants 2022-04-09 14:37:28 +03:00
parent 9267e50415
commit 1be31684d6
Signed by: evert
GPG Key ID: 1688DA83D222D0B5

View File

@ -53,7 +53,9 @@ export class Game {
socket.emit('me', publicUserInfo); socket.emit('me', publicUserInfo);
socket.emit( socket.emit(
'players', 'players',
this._connections.map((conn) => ({ this._connections
.filter((player) => player.data.user)
.map((conn) => ({
...this.mapPlayer(conn.data.user), ...this.mapPlayer(conn.data.user),
...conn.data.playerinfo, ...conn.data.playerinfo,
})), })),