From 3aa4595aa9c8ce7e6c28e676f77b289d8cbabda3 Mon Sep 17 00:00:00 2001 From: nin0 Date: Sun, 4 May 2025 18:56:16 -0400 Subject: [PATCH] fix ping --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index e8dff5b..36c19e5 100644 --- a/main.py +++ b/main.py @@ -16,10 +16,10 @@ class Vaius(commands.Bot): if ctx.valid: await self.invoke(ctx) -@Vaius.command -async def ping(self, ctx): - await ctx.reply("Pong!") - client = Vaius(command_prefix="v", user_bot=True, chunk_guilds_at_startup=False) +@client.command() +async def ping(ctx): + await ctx.reply("Pong!") + client.run(os.getenv("TOKEN"))