aboutsummaryrefslogtreecommitdiff
path: root/commands/ship.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ship.js')
-rw-r--r--commands/ship.js29
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',
+};