diff --git a/cogs/privacy.py b/cogs/privacy.py index c89625d..9984384 100644 --- a/cogs/privacy.py +++ b/cogs/privacy.py @@ -8,8 +8,8 @@ def __init__(self, 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. Full information about what is collected can be found on [W.I.P. bear with us]. For any concerns, Mail to soapy@cloudykingdom.com" - embed.color = Utils.Colors.blue + 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" + embed.colour = Utils.Colors.blue await ctx.respond(embed=embed) def setup(bot):