diff --git a/commands/random-res/8-ball.js b/commands/random-res/8-ball.js index 5b8cfee9..68508813 100644 --- a/commands/random-res/8-ball.js +++ b/commands/random-res/8-ball.js @@ -31,7 +31,7 @@ module.exports = class EightBallCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - ${question} + _${question}_ 🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱 `); } diff --git a/commands/random-res/charlie-charlie.js b/commands/random-res/charlie-charlie.js index 6470940a..7d5b9add 100644 --- a/commands/random-res/charlie-charlie.js +++ b/commands/random-res/charlie-charlie.js @@ -24,7 +24,7 @@ module.exports = class CharlieCharlieCommand extends Command { run(msg, { question }) { const answer = answers[Math.floor(Math.random() * answers.length)]; return msg.say(stripIndent` - ${question} + _${question}_ \`\`\` ${answer === 'no' ? '\\' : ' '} | ${answer === 'yes' ? '/' : ' '} NO ${answer === 'no' ? '\\' : ' '} | ${answer === 'yes' ? '/' : ' '}YES diff --git a/commands/random-res/magic-conch.js b/commands/random-res/magic-conch.js index da0c74b5..660d1d54 100644 --- a/commands/random-res/magic-conch.js +++ b/commands/random-res/magic-conch.js @@ -31,7 +31,7 @@ module.exports = class MagicConchCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - ${question} + _${question}_ 🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚 `); } diff --git a/commands/random-res/opinion.js b/commands/random-res/opinion.js index 90a8220f..fde227a6 100644 --- a/commands/random-res/opinion.js +++ b/commands/random-res/opinion.js @@ -22,7 +22,7 @@ module.exports = class OpinionCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - ${question} + _${question}_ ${opinions[Math.floor(Math.random() * opinions.length)]} `); } diff --git a/commands/random-res/yes-no.js b/commands/random-res/yes-no.js index 5c223791..a94d5a08 100644 --- a/commands/random-res/yes-no.js +++ b/commands/random-res/yes-no.js @@ -23,7 +23,7 @@ module.exports = class YesNoCommand extends Command { run(msg, { question }) { return msg.say(stripIndents` - ${question} + _${question}_ ${answers[Math.floor(Math.random() * answers.length)]} `); } diff --git a/package.json b/package.json index 2412ce2e..a2f4f63f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "126.8.0", + "version": "126.8.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {