diff --git a/src/utils/game/generatePlayerList.ts b/src/utils/game/generatePlayerList.ts index a33dadc..a9b0f74 100644 --- a/src/utils/game/generatePlayerList.ts +++ b/src/utils/game/generatePlayerList.ts @@ -18,7 +18,7 @@ export default async function generatePlayerList(client: Client, game: unoGame): count: game.cards[e].length, cards: ` - ${game.cards[e].length.toString().padStart(Math.max(...Object.values(game.cards).map(v => v.length.toString().length)), "")}`, name: username?.padEnd(Math.max(...Object.values(usernames).map(el => el.length)), ""), - plus: game.currentPlayer === e ? "+ " : "", + plus: game.currentPlayer === e ? "+ " : " ", lng: game.locale }); else string += username + "\n";