From 9f0515fed72c0ac9490b6ebe59338855309cd87c Mon Sep 17 00:00:00 2001 From: huker667 Date: Tue, 11 Aug 2026 22:58:25 +0300 Subject: темп бан да MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'commands.py') diff --git a/commands.py b/commands.py index 9c01e3d..3afe666 100644 --- a/commands.py +++ b/commands.py @@ -134,6 +134,18 @@ async def reset_handler(message: Message, command: CommandObject): for user_id in users: reset_user_setting(user_id, key, val) await message.answer(f"✅ сбросил всем {key} на {val}") + + +@router.message(Command("tben")) +async def tben_handler(message: Message, command: CommandObject): + if message.from_user.id != ADMIN_ID: + return + args = command.args + if not args or len(args.split(" ", 2)) < 2: + return await message.answer("dayn eblan suka") + key, val = args.split()[0], args.split()[1] + temp_benned = temp_benned | {str(key): val} + await message.answer(f"✅ хамха забенен") @router.message(Command("clean")) -- cgit v1.3.1