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})**~~")