From 3572d385b1f4fc8048fdab26a9434e24ce1e2e3b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 11 May 2020 13:18:57 -0400 Subject: [PATCH] Fix --- commands/games-mp/poker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index 4686f7ca..f11d6036 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -174,12 +174,12 @@ module.exports = class PokerCommand extends Command { if (winners.length > 1) { await msg.say(stripIndents` The pot will be split between ${list(winners.map(w => `**${w.user.user}**`))}. - ${winners.map(winner.desc).join(', ')} + ${winners.map(winner.descr).join(', ')} `); const splitPot = turnData.pot / winners.length; for (const win of winners) win.user.money += splitPot; } else { - await msg.say(`${winners[0].user.user} takes the pot, with **${winners[0].desc}**.`); + await msg.say(`${winners[0].user.user} takes the pot, with **${winners[0].descr}**.`); winners[0].user.money += turnData.pot; } await this.resetGame(msg, players);