Files
xiao/commands/util/donate.js
T
2020-04-23 16:37:23 -04:00

30 lines
622 B
JavaScript

const Command = require('../../structures/Command');
const { stripIndents } = require('common-tags');
module.exports = class DonateCommand extends Command {
constructor(client) {
super(client, {
name: 'donate',
aliases: ['paypal'],
group: 'util',
memberName: 'donate',
description: 'Responds with the bot\'s donation links.',
guarded: true,
credit: [
{
name: 'PayPal',
url: 'https://www.paypal.com/us/home',
reason: 'Donation Gathering'
}
]
});
}
run(msg) {
return msg.say(stripIndents`
Contribute to development!
https://paypal.me/dragonfire535
`);
}
};