Skip to content

Commit

Permalink
[IMP] listGamesCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
maschlr committed Sep 4, 2024
1 parent d56562f commit faf4006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/listGames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function listGamesCommand(ctx: Context) {
status = "Finished";
break;
}
return `${game.challenger} vs ${game.opponent} - ${status}`;
return `@${game.challenger.username} vs @${game.opponent.username} - ${status}`;
}).join("\n");

await ctx.reply(`Active games in this channel:\n\n${gameList}`);
Expand Down

0 comments on commit faf4006

Please sign in to comment.