From e087c969b5398aecc7f4c5c51163c1dcb34b5087 Mon Sep 17 00:00:00 2001 From: DasMoorhuhn Date: Tue, 20 Feb 2024 22:08:07 +0100 Subject: [PATCH] log whenever bot joined/left a server --- create_invite_link.py | 1 - src/cogs/help_commands.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/create_invite_link.py b/create_invite_link.py index deef132..a6558b7 100644 --- a/create_invite_link.py +++ b/create_invite_link.py @@ -2,7 +2,6 @@ import sys permissions = "274877966400" scope = "bot+applications.commands" -# client_id = 961747147135524874 try: client_id = sys.argv[1] except: diff --git a/src/cogs/help_commands.py b/src/cogs/help_commands.py index 37ceff3..ab8d98a 100644 --- a/src/cogs/help_commands.py +++ b/src/cogs/help_commands.py @@ -46,7 +46,8 @@ class HelpCommands(Cog): bot_string += f"Uptime : {self.bot.get_uptime()}s\n" bot_string += f"Version : {self.bot.version} from {self.bot.date}\n" bot_string += f"Developer : dasmoorhuhn\n" - bot_string += f"Sourcecode: https://gitlab.com/DasMoorhuhn/tux-discord-bot" + bot_string += f"Sourcecode: [Gitlab](https://gitlab.com/DasMoorhuhn/tux-discord-bot)\n" + bot_string += f"Privacy : [Read about privacy](https://gitlab.com/DasMoorhuhn/tux-discord-bot/-/blob/main/README.md?ref_type=heads#privacy)" embed = Embed(title=f"Info", description="about this Bot", color=Color.blue())