Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bot/exts/advent_of_code/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import bot
from bot.bot import SirRobin
from bot.constants import AdventOfCode, Bot, Channels, Colours, Roles
from bot.constants import AdventOfCode, Channels, Colours, Roles
from bot.exts.advent_of_code import _caches

log = logging.get_logger(__name__)
Expand Down Expand Up @@ -188,7 +188,7 @@ def _format_leaderboard(leaderboard: dict[str, dict], self_placement_name: str |
raise commands.BadArgument(
"Sorry, your profile does not exist in this leaderboard."
"\n\n"
f"To join our leaderboard, run the command `{Bot.prefix}aoc join`."
"To join our leaderboard, run the command `/aoc join`."
" If you've joined recently, please wait up to 30 minutes for our leaderboard to refresh."
)
return "\n".join(leaderboard_lines)
Expand Down
Loading