diff options
Diffstat (limited to 'src/commands/fun/8ball.ts')
| -rw-r--r-- | src/commands/fun/8ball.ts | 2 |
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() |