Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sending payload link in ssnc #1318

Merged
merged 2 commits into from
Jul 1, 2024
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 cogs/ssnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ async def check_nx_serial(self, ctx: KurisuContext, serial: str):
elif maybe:
return await ctx.send("{}: Serial {} _might_ be patched. The only way you can know this for sure is by "
"pushing the payload manually. You can find instructions to do so here: "
"https://switch.hacks.guide/user_guide/emummc/sending_payload/".format(ctx.author.mention,
safe_serial), ephemeral=True)
"https://switch.hacks.guide/user_guide/rcm/sending_payload/".format(ctx.author.mention,
safe_serial), ephemeral=True)
elif patched:
return await ctx.send("{}: Serial {} is patched.".format(ctx.author.mention, safe_serial), ephemeral=True)
else:
Expand Down