aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fun/dice.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/dice.ts')
-rw-r--r--src/commands/fun/dice.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/fun/dice.ts b/src/commands/fun/dice.ts
index 46b159b..241f1d2 100644
--- a/src/commands/fun/dice.ts
+++ b/src/commands/fun/dice.ts
@@ -15,7 +15,7 @@ export default class EightBallCommand extends BushCommand {
});
}
- public async exec(message: BushMessage | BushSlashMessage): Promise<unknown> {
+ public override async exec(message: BushMessage | BushSlashMessage): Promise<unknown> {
const responses = ['1', '2', '3', '4', '5', '6'];
const answer = responses[Math.floor(Math.random() * responses.length)];
return await message.util.reply(`You rolled a **${answer}**.`);