mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-16 15:57:54 +02:00
updoot
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { stripIndents } = require('common-tags');
|
||||
|
||||
module.exports = class InviteCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'invite',
|
||||
group: 'util',
|
||||
memberName: 'invite',
|
||||
description: 'Responds with an invite for the bot and an invite to the home server.',
|
||||
guarded: true
|
||||
});
|
||||
}
|
||||
|
||||
async run(msg) {
|
||||
const invite = await this.client.generateInvite('1345846343');
|
||||
return msg.say(stripIndents`
|
||||
Add me to your server with this link:
|
||||
<${invite}>
|
||||
Or, come to my server with this link:
|
||||
${this.client.options.invite}
|
||||
`);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user