From e3de606f5f7d1db7273cec3157b3774886def246 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 17 Jul 2024 15:23:45 -0700 Subject: [PATCH] results: ctr_support: add 002-1021 Taken straight out of Nintendo's error message: ``` There is no Nintendo Network ID linked with this system. You can create a Nintendo Network ID or link one to the system by going to Nintendo Network ID Settings from the System Settings. ``` --- cogs/results/ctr_support.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogs/results/ctr_support.py b/cogs/results/ctr_support.py index 180e1ba0..cfe6bd51 100644 --- a/cogs/results/ctr_support.py +++ b/cogs/results/ctr_support.py @@ -60,7 +60,8 @@ 119: ResultInfo('System update is required. This is typically shown when the friends module is outdated.'), 120: ResultInfo('Game or title update is required. This is typically shown when the title you\'re trying to launch is outdated.'), 121: ResultInfo('Local friend code SEED has invalid signature. This should only happen if it has been modified.', is_ban=True), - 123: ResultInfo('This console is permanently banned by Nintendo.', is_ban=True) + 123: ResultInfo('This console is permanently banned by Nintendo.', is_ban=True), + 1021: ResultInfo('There is no Nintendo Network ID linked with this system.') }) # 003: connection related errors