Skip to content

Commit

Permalink
Fixing shift leaderboard and active types
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikey committed Dec 31, 2023
1 parent fad927d commit 3fdb4b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/ShiftLogging.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ async def duty_active(self, ctx: commands.Context, type: str):
[
discord.SelectOption(
label=i["name"],
value=i["id"],
value=i["name"],
description=i["name"],
)
for i in shift_types
Expand Down Expand Up @@ -701,7 +701,7 @@ async def shift_leaderboard(self, ctx: commands.Context, *, type: str = None):
[
discord.SelectOption(
label=i["name"],
value=i["id"],
value=i["name"],
description=i["name"],
)
for i in shift_types
Expand Down

0 comments on commit 3fdb4b5

Please sign in to comment.