Skip to content

Commit

Permalink
Fix sending payload link in ssnc (#1318)
Browse files Browse the repository at this point in the history
* Fix sending payload link in ssnc

* Fix spacing so check doesn't fail
  • Loading branch information
MarigoldZephyrNio committed Jul 1, 2024
1 parent 1b5ed30 commit fd4aefb
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit fd4aefb

Please sign in to comment.