diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/8ball.js | 2 | ||||
| -rw-r--r-- | commands/abee.js | 1 | ||||
| -rw-r--r-- | commands/dm.js | 1 | ||||
| -rw-r--r-- | commands/help.js | 1 | ||||
| -rw-r--r-- | commands/leave.js | 1 | ||||
| -rw-r--r-- | commands/ping.js | 1 | ||||
| -rw-r--r-- | commands/quote.js | 2 | ||||
| -rw-r--r-- | commands/reboot.js | 2 | ||||
| -rw-r--r-- | commands/server.js | 2 | ||||
| -rw-r--r-- | commands/uhhhh.js | 1 | ||||
| -rw-r--r-- | commands/wahoo.js | 1 |
11 files changed, 11 insertions, 4 deletions
diff --git a/commands/8ball.js b/commands/8ball.js index e865176..878fc92 100644 --- a/commands/8ball.js +++ b/commands/8ball.js @@ -2,7 +2,7 @@ const Discord = require('discord.js'); module.exports = { name: '8ball', - aliases: ['ball', '8b'], + aliases: ['ball', '8b', 'eightball', 'eightb'], description: '', execute(msg) { r = ['yes~ uwu', 'no.', 'yes!', 'no!', 'what, no.', 'yes.', 'maybe.', 'perhaps.', 'try again.', 'i\'m not sure.']; diff --git a/commands/abee.js b/commands/abee.js index f46a06b..3cde38b 100644 --- a/commands/abee.js +++ b/commands/abee.js @@ -2,6 +2,7 @@ const ytdl = require('ytdl-core'); module.exports = { name: 'abee', + aliases: ['a-bee'], description: '', async execute(msg, args, bot) { if (msg.member.voiceChannel && !msg.guild.voiceConnection) { diff --git a/commands/dm.js b/commands/dm.js index fcaeb0d..8c7a044 100644 --- a/commands/dm.js +++ b/commands/dm.js @@ -1,5 +1,6 @@ module.exports = { name: 'dm', + aliases: ['directmessage'], description: '', execute(msg, args, bot) { if (msg.author) { // TODO: fix discord not evaluating args[1] diff --git a/commands/help.js b/commands/help.js index b963301..27436e1 100644 --- a/commands/help.js +++ b/commands/help.js @@ -2,6 +2,7 @@ const Discord = require('discord.js'); module.exports = { name: 'help', + aliases: ['h'], description: '', execute(msg, args, bot) { if (!args.length) { diff --git a/commands/leave.js b/commands/leave.js index 6965069..03701be 100644 --- a/commands/leave.js +++ b/commands/leave.js @@ -1,5 +1,6 @@ module.exports = { name: 'leave', + aliases: ['l'], description: '', execute(msg, args, bot) { if (msg.guild.voiceConnection) { diff --git a/commands/ping.js b/commands/ping.js index 7837180..69526eb 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -2,6 +2,7 @@ const Discord = require('discord.js'); module.exports = { name: 'ping', + aliases: ['p'], description: '', execute(msg, args, bot) { const t = Date.now(); diff --git a/commands/quote.js b/commands/quote.js index 133c9eb..e7cdbf9 100644 --- a/commands/quote.js +++ b/commands/quote.js @@ -2,7 +2,7 @@ const atquotes = require('at-quotes'); module.exports = { name: 'quote', - aliases: ['quotes'], + aliases: ['quotes', 'q'], description: '', execute(msg, args, bot) { if (!args.length) { diff --git a/commands/reboot.js b/commands/reboot.js index f5ec9eb..9416730 100644 --- a/commands/reboot.js +++ b/commands/reboot.js @@ -1,6 +1,6 @@ module.exports = { name: 'reboot', - aliases: ['r'], + aliases: ['r', 're'], description: '', execute(msg, args, bot) { msg.member.voiceChannel.join(); diff --git a/commands/server.js b/commands/server.js index 220857d..c410243 100644 --- a/commands/server.js +++ b/commands/server.js @@ -2,7 +2,7 @@ const Discord = require('discord.js'); module.exports = { name: 'server', - aliases: ['serverinfo'], + aliases: ['serverinfo', 'si'], description: '', execute(msg) { var o = msg.guild.members.filter(m => m.presence.status === 'online').size; diff --git a/commands/uhhhh.js b/commands/uhhhh.js index 3c84d8d..ccf94ff 100644 --- a/commands/uhhhh.js +++ b/commands/uhhhh.js @@ -1,5 +1,6 @@ module.exports = { name: 'uhhhh', + aliases: ['moan'], description: '', async execute(msg, args, bot) { if (msg.member.voiceChannel && !msg.guild.voiceConnection) { diff --git a/commands/wahoo.js b/commands/wahoo.js index 4745874..713ee9d 100644 --- a/commands/wahoo.js +++ b/commands/wahoo.js @@ -1,5 +1,6 @@ module.exports = { name: 'wahoo', + aliases: ['mario'], description: '', async execute(msg, args, bot) { if (msg.member.voiceChannel && !msg.guild.voiceConnection) { |