diff options
| author | 8cy <[email protected]> | 2020-04-18 04:49:52 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-18 04:49:52 -0700 |
| commit | 7391135125ee1c9abcb142bc00f8d7b0df140254 (patch) | |
| tree | e50434b4e8c67a5408841d65c48cf208bcde4a13 /dist/commands/fun/8ball.js | |
| parent | update node packages (diff) | |
| download | dep-core-7391135125ee1c9abcb142bc00f8d7b0df140254.tar.xz dep-core-7391135125ee1c9abcb142bc00f8d7b0df140254.zip | |
change case in 8ball + add coinflip, v7.1.2
Diffstat (limited to 'dist/commands/fun/8ball.js')
| -rw-r--r-- | dist/commands/fun/8ball.js | 2 |
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') |