From 61c2fb082219f0a59bf048008436c9b8cc69d6a0 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sun, 27 Oct 2019 00:26:37 +0200 Subject: [PATCH] Command dedicated to people who donated --- commands/utility/donator.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 commands/utility/donator.js diff --git a/commands/utility/donator.js b/commands/utility/donator.js new file mode 100644 index 0000000..b014bcf --- /dev/null +++ b/commands/utility/donator.js @@ -0,0 +1,21 @@ +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; \ No newline at end of file