aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/ship.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/commands/ship.js b/commands/ship.js
new file mode 100644
index 0000000..3e43317
--- /dev/null
+++ b/commands/ship.js
@@ -0,0 +1,15 @@
+exports.run = (bot, msg, args) => {
+ message.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