From c85b1479424f49f10f57c78416394d28b6b78f9a Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Mon, 9 Oct 2023 11:11:34 -0700 Subject: [PATCH] get-started: don't deny N3DS the chance of MSET9 However, our update page for N3DS still uses super-skaterhax (as it should), so only redirect to update page if console is an O3DS for the time being. --- assets/js/selecting.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/assets/js/selecting.js b/assets/js/selecting.js index da087c46ae..3d78ecdaa8 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -203,17 +203,14 @@ function can_mset9(major, minor, native, region, model) { let do_redirect_sysupdate = false; let do_redirect = false; - // The guide currently doesn't support N3DS for this exploit - if (model != DEVICE_O3DS) return false; - // Exploit supports 11.4 or later // Update consoles that aren't there yet - if(!(major == 11 && minor >= 4)) { + if(model == DEVICE_O3DS && !(major == 11 && minor >= 4)) { do_redirect_sysupdate = true; } else do_redirect = true; - if (do_redirect_sysupdate) { + if (do_redirect_sysupdate && model == DEVICE_O3DS) { window.location.href = "updating-firmware-(old-3ds)"; return true; }