From e475de59b2a88b0b42205eec6b9aa8a00efc808d Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Thu, 22 Jan 2026 14:24:03 +0300 Subject: [PATCH] fix removeAdmin command requirements --- src/commands/admins-remove.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/admins-remove.ts b/src/commands/admins-remove.ts index 68fdc86..a41c03a 100644 --- a/src/commands/admins-remove.ts +++ b/src/commands/admins-remove.ts @@ -12,7 +12,7 @@ export class AdminsRemove extends ChatCommand { description = "Remove user from admins"; requirements = Requirements.Build( - Requirement.BOT_ADMIN, + Requirement.BOT_CREATOR, Requirement.REPLY, Requirement.CHAT, );