From 46883da01ee05bcb361271da10ace276f59eb84f Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 7 Nov 2020 11:36:48 -0500 Subject: [PATCH] Remove 1 and 2 --- commands/games-sp/would-you-rather.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-sp/would-you-rather.js b/commands/games-sp/would-you-rather.js index 5696c9bd..384fd273 100644 --- a/commands/games-sp/would-you-rather.js +++ b/commands/games-sp/would-you-rather.js @@ -44,7 +44,7 @@ module.exports = class WouldYouRatherCommand extends Command { this.client.games.delete(msg.channel.id); return msg.reply(stripIndents` No response? Too bad. - 1 ${formatNumber(data.option1_total)} - ${formatNumber(data.option2_total)} 2 + ${formatNumber(data.option1_total)} - ${formatNumber(data.option2_total)} `); } const option1 = msgs.first().content.toLowerCase() === '1'; @@ -53,7 +53,7 @@ module.exports = class WouldYouRatherCommand extends Command { this.client.games.delete(msg.channel.id); return msg.reply(stripIndents` **${Math.round((numToUse / totalVotes) * 100)}%** of people agree! - 1 ${formatNumber(data.option1_total)} - ${formatNumber(data.option2_total)} 2 + ${formatNumber(data.option1_total)} - ${formatNumber(data.option2_total)} `); } catch (err) { this.client.games.delete(msg.channel.id);