소스 검색

fixing say command as cog

BaumSplitter41 4 달 전
부모
커밋
1de293014c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      VPD_BOT/cogs/say.py

+ 1 - 1
VPD_BOT/cogs/say.py

@@ -9,7 +9,7 @@ class Say(commands.Cog):
         self.bot = bot
 
     @slash_command(description="Greet a User")
-    async def greet(ctx, user: str = Option(discord.User, "The user, you want to greet")):
+    async def greet(self, ctx, user: str = Option(discord.User, "The user, you want to greet")):
         await ctx.respond(f"Hello {user.mention}")