diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 13:41:04 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 13:41:04 -0500 |
| commit | d1c03a7fe66984fa2626a26ffe7b876db8ea964b (patch) | |
| tree | dffcb90ad9ae7588b2ba006736ff120eab98a7df /commands | |
| parent | 37e7c523e6a0f2fc2ba08f40e318cb808404c167 (diff) | |
| download | PokeBot-d1c03a7fe66984fa2626a26ffe7b876db8ea964b.tar.gz PokeBot-d1c03a7fe66984fa2626a26ffe7b876db8ea964b.tar.bz2 PokeBot-d1c03a7fe66984fa2626a26ffe7b876db8ea964b.zip | |
ship
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/ship.js | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/commands/ship.js b/commands/ship.js index 8ff8988..4bedd26 100644 --- a/commands/ship.js +++ b/commands/ship.js @@ -1,15 +1,14 @@ -exports.run = (bot, msg, args) => { - msg.channel.send(message.author.username + " x " + message.guild.members.random().displayName + ':cruise_ship:'); - }; - - exports.conf = { - aliases: [], - guildOnly: true, - }; - - exports.help = { - name: 'ship', - description: 'Test the luck of your love life! Ships you with another user.', - category: 'Fun', - }; -
\ No newline at end of file +exports.run = (bot, msg) => { + msg.channel.send(msg.author.username + ' x ' + msg.guild.members.random().displayName + ':cruise_ship:'); +}; + +exports.conf = { + aliases: [], + guildOnly: true, +}; + +exports.help = { + name: 'ship', + description: 'Test the luck of your love life! Ships you with another user.', + category: 'Fun', +}; |
