diff --git a/commands/random-res/8-ball.js b/commands/random-res/8-ball.js index 3c175126..5171419d 100644 --- a/commands/random-res/8-ball.js +++ b/commands/random-res/8-ball.js @@ -22,7 +22,7 @@ module.exports = class EightBallCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - Question: ${question} + ${question} 🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱 `); } diff --git a/commands/random-res/charlie-charlie-challenge.js b/commands/random-res/charlie-charlie-challenge.js index 5479103b..1f08239c 100644 --- a/commands/random-res/charlie-charlie-challenge.js +++ b/commands/random-res/charlie-charlie-challenge.js @@ -23,12 +23,12 @@ module.exports = class CharlieCharlieChallengeCommand extends Command { run(msg, { question }) { const answer = answers[Math.floor(Math.random() * answers.length)]; return msg.say(stripIndent` - Question: ${question} + ${question} \`\`\` ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '} NO ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}YES ${answer === 'no1' ? '\\' : ' '}|${answer === 'yes1' ? '/' : ' '} - ---------------- + ———————+———————— ${answer === 'yes2' ? '/' : ' '}|${answer === 'no2' ? '\\' : ' '} YES${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}NO ${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '} diff --git a/commands/random-res/magic-conch.js b/commands/random-res/magic-conch.js index 6287d274..6f8dcd69 100644 --- a/commands/random-res/magic-conch.js +++ b/commands/random-res/magic-conch.js @@ -22,7 +22,7 @@ module.exports = class MagicConchCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - Question: ${question} + ${question} 🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚 `); } diff --git a/package.json b/package.json index 3b7af12e..7283a65b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "46.3.0", + "version": "46.3.1", "description": "Your personal server companion.", "main": "Shard.js", "scripts": {