From cc4bc1419367ff143826952fbc8ccd4fd9b3eee3 Mon Sep 17 00:00:00 2001 From: NotSoToothless <67082114+FURRO404@users.noreply.github.com> Date: Fri, 29 May 2026 09:45:37 -0700 Subject: [PATCH] fix schedule (#1286) --- BOT/botscript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BOT/botscript.py b/BOT/botscript.py index 31e8060..75cea4b 100644 --- a/BOT/botscript.py +++ b/BOT/botscript.py @@ -8712,8 +8712,8 @@ async def schedule_cmd(interaction: discord.Interaction): br_str = f"{br:.1f}" date_str = f"" - is_past = now > end_ts + 86399 - is_current = start_ts <= now <= end_ts + 86399 + is_past = now >= end_ts + is_current = start_ts <= now < end_ts if is_past: lines.append(f"> ~~**{br_str} ({date_str})**~~")