summaryrefslogtreecommitdiff
path: root/src/commands/fun/8ball.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-18 04:49:52 -0700
committer8cy <[email protected]>2020-04-18 04:49:52 -0700
commit7391135125ee1c9abcb142bc00f8d7b0df140254 (patch)
treee50434b4e8c67a5408841d65c48cf208bcde4a13 /src/commands/fun/8ball.ts
parentupdate node packages (diff)
downloaddep-core-7391135125ee1c9abcb142bc00f8d7b0df140254.tar.xz
dep-core-7391135125ee1c9abcb142bc00f8d7b0df140254.zip
change case in 8ball + add coinflip, v7.1.2
Diffstat (limited to 'src/commands/fun/8ball.ts')
-rw-r--r--src/commands/fun/8ball.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/fun/8ball.ts b/src/commands/fun/8ball.ts
index faf7adf..2ba8fc4 100644
--- a/src/commands/fun/8ball.ts
+++ b/src/commands/fun/8ball.ts
@@ -25,7 +25,7 @@ module.exports = class EightBallFun extends Command {
});
}
run(msg: CommandoMessage) {
- 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 MessageEmbed()