forked from Supositware/Haha-Yes
Added a donation command ( will probably remove later )
This commit is contained in:
parent
951b3f9b9c
commit
abe405536a
1 changed files with 15 additions and 0 deletions
15
commands/utility/supportme.js
Normal file
15
commands/utility/supportme.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
module.exports = class supportMeCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'supportme',
|
||||
group: 'fun',
|
||||
memberName: 'supportme',
|
||||
description: `Support me and my bot`,
|
||||
});
|
||||
}
|
||||
|
||||
async run(message, { text }) {
|
||||
message.say('If you want to support me and my bot you can donate here\nhttps://www.paypal.me/supositware or here https://donatebot.io/checkout/487640086859743232\n(This is totally optionnal dont feel forced to do it)');
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue