From b6a64eb75d76414210ad652b84dd8166a98436ee Mon Sep 17 00:00:00 2001 From: Joshua Slui Date: Sat, 25 Feb 2023 14:28:09 +0100 Subject: [PATCH] we dont need this --- cogs/privacy.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 cogs/privacy.py diff --git a/cogs/privacy.py b/cogs/privacy.py deleted file mode 100644 index 0dc2e80..0000000 --- a/cogs/privacy.py +++ /dev/null @@ -1,19 +0,0 @@ -from discord.ext import commands, bridge -from discord import Embed -from utils import Utils - - -class Privacy(commands.Cog): - def __init__(self, bot): - self.bot = bot - - @bridge.bridge_command(description="Shows the privacy policy of the bot.") - async def privacy(self, ctx): - embed = Embed() - embed.description = f"{self.bot.user.name} saves a minimal amount of data to allow for its functionality. As we work on regaining full functionality, we do not currently collect anything On our database storage, we currently only have server IPs and guild IDs stored. For any concerns, Mail to miataboymx@gmail.com or join https://discord.gg/Ukr89GrMBk" - embed.colour = Utils.Colors.blue - await ctx.respond(embed=embed) - - -def setup(bot): - bot.add_cog(Privacy(bot))