summaryrefslogtreecommitdiff
path: root/dist/commands/fun/8ball.js
diff options
context:
space:
mode:
Diffstat (limited to 'dist/commands/fun/8ball.js')
-rw-r--r--dist/commands/fun/8ball.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/commands/fun/8ball.js b/dist/commands/fun/8ball.js
index ccc9b6e..3417b34 100644
--- a/dist/commands/fun/8ball.js
+++ b/dist/commands/fun/8ball.js
@@ -26,7 +26,7 @@ module.exports = class EightBallFun extends discord_js_commando_1.Command {
});
}
run(msg) {
- var r = ['Yes~ uwu', 'No.', 'Yes!', 'No!', 'What, no.', 'Yes.', 'Maybe.', 'Perhaps.', 'Try again.', 'I\'m not sure.'];
+ var r = ['yes~ uwu', 'no.', 'yes!', 'no!', 'what, no.', 'yes.', 'maybe.', 'perhaps.', 'try again.', 'I\'m not sure.'];
var s = r[Math.floor(Math.random() * r.length)];
let embed = new discord_js_1.MessageEmbed()
.setAuthor('The 8-ball says', 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/8-Ball_Pool.svg/500px-8-Ball_Pool.svg.png')