Beep beep

This commit is contained in:
Daniel Odendahl Jr
2017-10-10 15:56:45 +00:00
parent 8a90a58846
commit 04888c3a1c
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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)]} 🎱
`);
}
@@ -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' ? '\\' : ' '}
+1 -1
View File
@@ -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)]} 🐚
`);
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "46.3.0",
"version": "46.3.1",
"description": "Your personal server companion.",
"main": "Shard.js",
"scripts": {