We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f807aeb commit 5569ff2Copy full SHA for 5569ff2
1 file changed
src/core/scheduling.py
@@ -88,7 +88,8 @@ async def run_scheduled_tasks() -> None:
88
await check_and_run_birthday_actions(bot, guild)
89
90
# Daily maintenance
91
- if current_time_local.hour == 3: # 3am local time is a good time to run daily maintenance since it's a low traffic hour
+ # 3am local time is a good time to run daily maintenance since it's a low traffic hour
92
+ if current_time_local.hour == 3 and current_time_local.minute == 0:
93
await daily_leveling_maintenance(bot, guild)
94
await daily_moderation_maintenance(bot, guild)
95
0 commit comments