Skip to content

Commit 3e6ecfb

Browse files
committed
Fix flag time
1 parent 6f1c84a commit 3e6ecfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

time_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async def on_ready():
1818

1919
async def check_flag():
2020
now = datetime.now(timezone(timedelta(hours=9)))
21-
if now.hour == 12 or now.hour == 19 or now.hour == 21:
21+
if now.hour == 11 or now.hour == 18 or now.hour == 20:
2222
if (now.minute == 56 and now.second >= 30) or (now.minute == 57 and now.second < 30):
2323
channel = client.get_channel(settings.flag_channel_id)
2424
if channel is None:

0 commit comments

Comments
 (0)