Add Patreon Stuff

This commit is contained in:
Dragon Fire
2021-03-08 19:01:56 -05:00
parent 15795e7927
commit 2716827f0c
3 changed files with 12 additions and 3 deletions
+3
View File
@@ -2,6 +2,7 @@
# Xiao
[![Build Status](https://github.com/dragonfire535/xiao/workflows/Lint/badge.svg?branch=master&event=push)](https://github.com/dragonfire535/xiao/actions)
[![Donate on Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/xiaodiscord)
[![Donate on PayPal](https://img.shields.io/badge/paypal-donate-blue.svg)](https://www.paypal.me/dragonfire535)
[![Discord](https://discordapp.com/api/guilds/252317073814978561/embed.png)](https://discord.gg/mTr83zt)
@@ -1635,6 +1636,8 @@ here.
* balloon-pop (Concept)
- [PaladinsGuru](https://paladins.guru/)
* paladins (API)
- [Patreon](https://www.patreon.com/)
* donate (Donation Gathering)
- [PayPal](https://www.paypal.com/us/home)
* donate (Donation Gathering)
- [PBS Kids](https://pbskids.org/)
+8 -2
View File
@@ -5,7 +5,7 @@ module.exports = class DonateCommand extends Command {
constructor(client) {
super(client, {
name: 'donate',
aliases: ['paypal'],
aliases: ['paypal', 'patreon'],
group: 'util-public',
memberName: 'donate',
description: 'Responds with the bot\'s donation links.',
@@ -15,6 +15,11 @@ module.exports = class DonateCommand extends Command {
name: 'PayPal',
url: 'https://www.paypal.com/us/home',
reason: 'Donation Gathering'
},
{
name: 'Patreon',
url: 'https://www.patreon.com/',
reason: 'Donation Gathering'
}
]
});
@@ -23,7 +28,8 @@ module.exports = class DonateCommand extends Command {
run(msg) {
return msg.say(stripIndents`
Contribute to development!
https://paypal.me/dragonfire535
<https://www.patreon.com/xiaodiscord>
<https://paypal.me/dragonfire535>
`);
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "131.12.0",
"version": "131.12.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {