Skip to content
Open
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
8 changes: 4 additions & 4 deletions cogs/ssnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ async def check_nx_serial(self, ctx: KurisuContext, serial: str):
patched = True

elif assembly_line == 4:
if checking_value < 4004600:
if checking_value < 4004400:
pass
elif 4004600 <= checking_value < 4006000:
elif 4004400 <= checking_value < 4006000:
maybe = True
elif checking_value >= 4006000:
patched = True
Expand All @@ -106,9 +106,9 @@ async def check_nx_serial(self, ctx: KurisuContext, serial: str):

elif region == 'W':
if assembly_line == 1:
if checking_value < 1007400:
if checking_value < 1006500:
pass
elif 1007400 <= checking_value < 1012000: # GBATemp thread is oddly disjointed here, proper value could
elif 1006500 <= checking_value < 1012000: # GBATemp thread is oddly disjointed here, proper value could
# be 1007500, not sure.
maybe = True
elif checking_value >= 1012000:
Expand Down