From 2716827f0c5cae98ae697f8f6c88c97278251b20 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 8 Mar 2021 19:01:56 -0500 Subject: [PATCH] Add Patreon Stuff --- README.md | 3 +++ commands/util-public/donate.js | 10 ++++++++-- package.json | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 32b6741b..6eb727a3 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/commands/util-public/donate.js b/commands/util-public/donate.js index e1528372..4c88c3ea 100644 --- a/commands/util-public/donate.js +++ b/commands/util-public/donate.js @@ -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 + + `); } }; diff --git a/package.json b/package.json index 6219f590..82e08c57 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "131.12.0", + "version": "131.12.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {