mirror of
https://github.com/UniverseDevGroup/PokeBot.git
synced 2025-01-22 17:32:00 -05:00
14 lines
333 B
JavaScript
14 lines
333 B
JavaScript
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',
|
|
};
|