From 1a4f7a992d292b56407c6901abcd24e0eed46a6e Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 6 Nov 2017 23:35:44 +0000 Subject: [PATCH] Beep --- commands/games/cards-against-humanity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!');