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