From 3cc8e4e2b523418bcd39bdef270a5b6883104fc5 Mon Sep 17 00:00:00 2001 From: insert Date: Mon, 12 Aug 2024 13:11:19 -0400 Subject: [PATCH] Update --- misc.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/misc.py b/misc.py index 2f6eeb8..1540433 100644 --- a/misc.py +++ b/misc.py @@ -29,6 +29,18 @@ class misc(commands.Cog): except: await interaction.followup.send(message, ephemeral=True) + @nextcord.slash_command( + name="testcommand", + description="Testing user installable", + integration_types=[ + IntegrationType.user_install, + ], + force_global=True, + ) + async def testcmd(self, interaction: nextcord.Interaction): + await interaction.response.send_message("Hey there this is a user installable command!") + + def setup(bot: commands.Bot):