mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-23 06:05:34 +00:00
Fix the shown errcode
This commit is contained in:
parent
a66fcd14b7
commit
52e5de4556
|
@ -78,6 +78,8 @@ class Err:
|
||||||
desc = int(err[5:9])
|
desc = int(err[5:9])
|
||||||
errcode = (desc << 9) + module
|
errcode = (desc << 9) + module
|
||||||
|
|
||||||
|
str_errcode = '{:04}-{:04}'.format(module + 2000, desc)
|
||||||
|
|
||||||
# Searching for Modules in list
|
# Searching for Modules in list
|
||||||
if module in switch_modules:
|
if module in switch_modules:
|
||||||
err_module = switch_modules[module]
|
err_module = switch_modules[module]
|
||||||
|
@ -97,7 +99,7 @@ class Err:
|
||||||
err_description = "It seems like your error code is unknown. You should report relevant details to <@141532589725974528> so it can be added to the bot."
|
err_description = "It seems like your error code is unknown. You should report relevant details to <@141532589725974528> so it can be added to the bot."
|
||||||
|
|
||||||
# Make a nice Embed out of it
|
# Make a nice Embed out of it
|
||||||
embed = discord.Embed(title="{} / {}".format(errcode, err), url="https://www.youtube.com/watch?v=x3yXlomPCmU", description=err_description)
|
embed = discord.Embed(title="{} / 0x{}".format(str_errcode, errcode), url="https://www.youtube.com/watch?v=x3yXlomPCmU", description=err_description)
|
||||||
embed.set_footer(text="Console: Switch")
|
embed.set_footer(text="Console: Switch")
|
||||||
embed.add_field(name="Module", value="{} ({})".format(err_module, module), inline=True)
|
embed.add_field(name="Module", value="{} ({})".format(err_module, module), inline=True)
|
||||||
embed.add_field(name="Description", value=desc, inline=True)
|
embed.add_field(name="Description", value=desc, inline=True)
|
||||||
|
|
Loading…
Reference in a new issue