aboutsummaryrefslogtreecommitdiff
path: root/commands/ship.js
blob: 8ff898847ac61f182b7531ef1ac913874cfc4329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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',
  };