From 2d307c65983792150a08535e663658642e2f3c1b Mon Sep 17 00:00:00 2001 From: Uwe Pfeifer Date: Tue, 18 Jun 2024 13:55:05 +0200 Subject: [PATCH] Updated .gitignore last time Added guilds command BEWARE: All administration.py commands are runnable by ALL Guild Admins so don't put the bot in any additional guilds. I first have to fix this by only making it possible on a specific guild. --- .idea/misc.xml | 2 +- .idea/pybot-f.iml | 2 +- ext/administration.py | 14 ++++++++++++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 58acee4..e3f92d0 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/.idea/pybot-f.iml b/.idea/pybot-f.iml index 764712e..de45ba9 100644 --- a/.idea/pybot-f.iml +++ b/.idea/pybot-f.iml @@ -5,7 +5,7 @@ - + \ No newline at end of file diff --git a/ext/administration.py b/ext/administration.py index fe4d548..85a08db 100644 --- a/ext/administration.py +++ b/ext/administration.py @@ -15,7 +15,7 @@ class AdminExt(commands.GroupCog, name="admin"): self.bot = bot super().__init__() # this is now required in this context. - + @app_commands.default_permissions() @app_commands.command(name="stop", description="Stops (shuts down) the bot") @commands.is_owner() async def admin_stop(self, interaction: discord.Interaction) -> None: @@ -23,7 +23,7 @@ class AdminExt(commands.GroupCog, name="admin"): await interaction.response.send_message("The bot will now shutdown. Good bye! :)") await self.bot.close() - + @app_commands.default_permissions() @app_commands.command(name="say", description="Makes the bot repeat what you type") @app_commands.describe(text="Text to send to the channel/query.") @commands.is_owner() @@ -31,6 +31,16 @@ class AdminExt(commands.GroupCog, name="admin"): """ /admin say """ await interaction.response.send_message(text) + @app_commands.default_permissions() + @app_commands.command(name="guilds", description="List guilds the bot is in") + @commands.is_owner() + async def admin_guilds(self, interaction: discord.Interaction) -> None: + """/admin guilds""" + guilds = [guild async for guild in self.bot.fetch_guilds(limit=150)] + + for guild in guilds: + guild = ''.join(str(guild)) + await interaction.response.send_message(guild, ephemeral=True) async def setup(bot: commands.Bot) -> None: await bot.add_cog(AdminExt(bot))