aboutsummaryrefslogtreecommitdiff
path: root/commands/ask.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ask.js')
-rw-r--r--commands/ask.js44
1 files changed, 22 insertions, 22 deletions
diff --git a/commands/ask.js b/commands/ask.js
index 0bc0761..3b1efd5 100644
--- a/commands/ask.js
+++ b/commands/ask.js
@@ -18,31 +18,31 @@
*
* *************************************/
module.exports.run = async (client, message, args) => {
- const abaskanswer = [
- 'Yes.',
- 'Nope. Just kidding :P',
- 'Definitely!',
- 'No.',
- 'Yep. Just kidding :P',
- 'I doubt it.',
- 'Maybe?',
- 'I don\'t know?',
- 'Hmm let me think :thinking:',
- ];
- if (args[1]) {
- message.channel.sendMessage(abaskanswer[Math.floor(Math.random() * abaskanswer.length)]);
- } else {
- message.channel.sendMessage('Sorry, I don\'t know what your saying.');
- }
+ const abaskanswer = [
+ 'Yes.',
+ 'Nope. Just kidding :P',
+ 'Definitely!',
+ 'No.',
+ 'Yep. Just kidding :P',
+ 'I doubt it.',
+ 'Maybe?',
+ 'I don\'t know?',
+ 'Hmm let me think :thinking:',
+ ];
+ if (args[1]) {
+ message.channel.send(abaskanswer[Math.floor(Math.random() * abaskanswer.length)]);
+ } else {
+ message.channel.send('Sorry, I don\'t know what your saying.');
+ }
};
exports.conf = {
- aliases: ['8ball'],
- guildOnly: false,
+ aliases: ['8ball'],
+ guildOnly: false,
};
exports.help = {
- name: 'ask',
- description: 'Give AleeBot a question!',
- usage: 'ask [args]',
- category: '- Fun Commands',
+ name: 'ask',
+ description: 'Give AleeBot a question!',
+ usage: 'ask [args]',
+ category: '- Fun Commands',
};