Skip to content

Commit

Permalink
fix: pass sunday to trigger_reoccurring_leaderboard
Browse files Browse the repository at this point in the history
  • Loading branch information
AstreaTSS committed Jul 16, 2024
1 parent 2c2f19d commit 05f2e1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exts/owner_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,12 +447,13 @@ async def trigger_autorunning_playerlist(
async def trigger_reoccurring_leaderboard(
self,
ctx: utils.RealmPrefixedContext,
sunday: bool,
second_sunday: bool,
first_monday_of_month: bool,
) -> None:
async with ctx.channel.typing:
await self.bot.ext["Autorunners"].reoccurring_lb_loop(
second_sunday, first_monday_of_month
sunday, second_sunday, first_monday_of_month
)
await ctx.reply("Done!")

Expand Down

0 comments on commit 05f2e1d

Please sign in to comment.