From 63e31e12c3b41c453e9dbda09ee9d57df9091037 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 10 Oct 2017 16:28:17 +0000 Subject: [PATCH] Both --- commands/random-res/charlie-charlie-challenge.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/commands/random-res/charlie-charlie-challenge.js b/commands/random-res/charlie-charlie-challenge.js index 4308de5d..47c87703 100644 --- a/commands/random-res/charlie-charlie-challenge.js +++ b/commands/random-res/charlie-charlie-challenge.js @@ -1,6 +1,6 @@ const { Command } = require('discord.js-commando'); const { stripIndent } = require('common-tags'); -const answers = ['no1', 'yes1', 'no2', 'yes2']; +const answers = ['yes', 'no']; module.exports = class CharlieCharlieChallengeCommand extends Command { constructor(client) { @@ -25,13 +25,13 @@ module.exports = class CharlieCharlieChallengeCommand extends Command { return msg.say(stripIndent` ${question} \`\`\` - ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '} - NO ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}YES - ${answer === 'no1' ? '\\' : ' '}|${answer === 'yes1' ? '/' : ' '} + ${answer === 'no' ? '\\' : ' '} | ${answer === 'yes' ? '/' : ' '} + NO ${answer === 'no' ? '\\' : ' '} | ${answer === 'yes' ? '/' : ' '}YES + ${answer === 'no' ? '\\' : ' '}|${answer === 'yes' ? '/' : ' '} ———————————————— - ${answer === 'yes2' ? '/' : ' '}|${answer === 'no2' ? '\\' : ' '} - YES${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}NO - ${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '} + ${answer === 'yes' ? '/' : ' '}|${answer === 'no' ? '\\' : ' '} + YES${answer === 'yes' ? '/' : ' '} | ${answer === 'no' ? '\\' : ' '}NO + ${answer === 'yes' ? '/' : ' '} | ${answer === 'no' ? '\\' : ' '} \`\`\` `); }