From 85e008a15a705c311cf8eff7128cb6851adbc2b4 Mon Sep 17 00:00:00 2001 From: insert Date: Tue, 6 Aug 2024 16:05:25 -0400 Subject: [PATCH] update --- usercommands.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/usercommands.py b/usercommands.py index 250f8d4..1441f44 100644 --- a/usercommands.py +++ b/usercommands.py @@ -17,7 +17,15 @@ class usercommands(commands.Cog): name="hello", description="say hi anywhere!", ) - async def query(self, inter: disnake.ApplicationCommandInteraction): + async def hellousercommand(self, inter: disnake.ApplicationCommandInteraction): + await inter.response.send_message("User installable commands everyone!") + + @commands.user_command( + name="meonlytest", + description="say hi anywhere!", + guild_ids=666378959184855042, + ) + async def meonlytestcommand(self, inter: disnake.ApplicationCommandInteraction): await inter.response.send_message("User installable commands everyone!") def setup(bot: commands.Bot):