1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/utility/donator.js

21 lines
684 B
JavaScript

const { Command } = require('discord-akairo');
class donatorCommand extends Command {
constructor() {
super('donator', {
aliases: ['donator'],
category: 'utility',
description: {
content: 'All the people who donated for this bot <3',
usage: '',
examples: ['']
}
});
}
async exec(message) {
return message.channel.send(`Thanks to:\n${this.client.users.get('294160866268413952').username}#${this.client.users.get('294160866268413952').discriminator} (294160866268413952)\n${this.client.users.get('428387534842626048').username}#${this.client.users.get('428387534842626048').discriminator} (428387534842626048)`);
}
}
module.exports = donatorCommand;