From 3f323521c3f1e9cf3f6bafb72a33a333596d99ce Mon Sep 17 00:00:00 2001 From: mathstrains21 <89940630+mathstrains21@users.noreply.github.com> Date: Wed, 27 Oct 2021 14:53:40 +0100 Subject: Add patreon command --- bot/exts/info/patreon.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py index 4ed24d23e..027fb9dfb 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -144,6 +144,19 @@ class Patreon(commands.Cog): discord.utils.get(self.bot.get_all_channels(), id=constants.Channels.meta) ) + @commands.command("patreon") + async def patreon_info(self, ctx: commands.context) -> None: + """A command to send patreon info.""" + await ctx.channel.send(embeds=[discord.Embed( + title="Patreon", + description=( + "We use the money from Patreon to offer excellent prizes for all of our events. Stuff like t-shirts, " + "stickers, microcontrollers that support CircuitPython, or maybe even a mechanical keyboard.\n\nYou can" + " read more about how Patreon supports us, or even support us yourself, on our Patreon page " + "[here](https://www.patreon.com/python_discord)!" + ) + )]) + def setup(bot: Bot) -> None: """Load the patreon cog.""" -- cgit v1.2.3