diff options
Diffstat (limited to 'commands/Fun/ship.js')
| -rw-r--r-- | commands/Fun/ship.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/commands/Fun/ship.js b/commands/Fun/ship.js new file mode 100644 index 0000000..ed8cf69 --- /dev/null +++ b/commands/Fun/ship.js @@ -0,0 +1,13 @@ +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.', +}; |
