1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-20 07:21:52 +02:00

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.
This commit is contained in:
lifehackerhansol
2023-10-09 11:11:34 -07:00
parent 5275a30170
commit c85b147942

View File

@@ -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;
}