diff --git a/commands/games/cards-against-humanity.js b/commands/games/cards-against-humanity.js index 18b828bf..958688f9 100644 --- a/commands/games/cards-against-humanity.js +++ b/commands/games/cards-against-humanity.js @@ -128,7 +128,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { const player = players.get(parseInt(chosen.first().content, 10)); ++player.points; if (player.points >= maxPts) winner = player.user; - else await msg.say(`Nice one, ${player.user}! You now have ${player.user} points!`); + else await msg.say(`Nice one, ${player.user}! You now have ${player.points} points!`); } this.playing.delete(msg.channel.id); if (!winner) return msg.say('See you next time!');