diff options
| author | 2021-10-27 14:53:40 +0100 | |
|---|---|---|
| committer | 2021-10-27 14:53:40 +0100 | |
| commit | 3f323521c3f1e9cf3f6bafb72a33a333596d99ce (patch) | |
| tree | 776d7f999619e17a7ba18b54bf0d8be7d1f8a634 | |
| parent | Add monthly patrons list (diff) | |
Add patreon command
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/patreon.py | 13 |
1 files changed, 13 insertions, 0 deletions
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.""" |