Skip to content

Commit eb0b54f

Browse files
committed
fix: adjust staff status interval from every 50 to every 10 cycles (~5h)
1 parent 760288c commit eb0b54f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commands/nemp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ async def polling_task(self, _pipe):
420420
# --- End-of-cycle bookkeeping ---
421421
router.poll_cycle_count += 1
422422

423-
if staff_channel and router.poll_cycle_count % 50 == 0:
423+
if staff_channel and router.poll_cycle_count % 10 == 0:
424424
await router.send_message(staff_channel, f"Full cycles completed: {router.poll_cycle_count}")
425425
if router.auto_disabled_mods:
426426
await router.send_message(

0 commit comments

Comments
 (0)