From d416bfcc37c99b1fb5c2006b69c937f70d0f946e Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Mon, 12 Jun 2023 14:40:07 -0700 Subject: [PATCH] get-started: don't Mii mine on CHN 11.15 While seedminer itself works, you can't do anything with it. --- assets/js/selecting.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/js/selecting.js b/assets/js/selecting.js index ef46ec01dc..2c7fbd5abc 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -132,8 +132,9 @@ function can_miimine(major, minor, native, region, model) { if (model == DEVICE_O3DS) { if (major == 11 && minor == 15) { // KOR and TWN can do normal seedminer + // CHN can't do seedminer at all (no valid exploit after doing so) // All other O3DS must Mii mine - if (region != "K" && region != "T") do_redirect = true; + if (!["C", "K", "T"].includes(region)) do_redirect = true; } }