From 01de790f51a56310b3c42b7f3cc0ecd9b030f147 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sun, 27 Oct 2019 17:26:05 +0100 Subject: [PATCH] Add message to let people know to contact the owner if they donate --- commands/utility/donate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/utility/donate.js b/commands/utility/donate.js index ae56ecf3..1c186040 100644 --- a/commands/utility/donate.js +++ b/commands/utility/donate.js @@ -18,9 +18,9 @@ class donateCommand extends Command { const Embed = new MessageEmbed() .setColor('#ff9900') .setTitle('Donation link') - .setDescription('[Paypal](https://www.paypal.me/supositware)\n[Patreon](https://www.patreon.com/bePatron?u=15330358)'); + .setDescription('If you decide to donate, please use the feedback command to let the owner know about it so he can put you in the about and donator command\n[Paypal](https://www.paypal.me/supositware)\n[Patreon](https://www.patreon.com/bePatron?u=15330358)'); - message.channel.send(Embed); + return message.channel.send(Embed); } }