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):