diff --git a/src/structures/client.ts b/src/structures/client.ts index 7550ef1..569745a 100644 --- a/src/structures/client.ts +++ b/src/structures/client.ts @@ -38,7 +38,7 @@ export class Client { this.bot.use(async (ctx, next) => { const user = ctx.from; - if (!user || user.is_bot) return await next(); + if (!user || user.is_bot || user.id == 777000) return await next(); const dbuser = await this.database.resolveUser(user!, true);