aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-04-20 22:28:34 +0100
committerGravatar GitHub <[email protected]>2022-04-20 22:28:34 +0100
commitd7f8dda90b8d14e144c3ddded91d228985f10f0c (patch)
tree3d0a5efbf948989c6bf178f8e3168dc54cbc5934
parentMerge pull request #2118 from python-discord/bump-d.py-version (diff)
parentDon't call broken ModPings scheduler (diff)
Merge pull request #2136 from python-discord/fix-modpings
Don't call broken ModPings scheduler
-rw-r--r--bot/exts/moderation/modpings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py
index 4d02c4530..e82099c88 100644
--- a/bot/exts/moderation/modpings.py
+++ b/bot/exts/moderation/modpings.py
@@ -42,7 +42,7 @@ class ModPings(Cog):
async def cog_load(self) -> None:
"""Schedule both when to reapply role and all mod ping schedules."""
- await self.reschedule_modpings_schedule()
+ # await self.reschedule_modpings_schedule()
await self.reschedule_roles()
async def reschedule_roles(self) -> None: