diff --git a/_pages/en_US/updating-firmware-(kor-twn).md b/_pages/en_US/updating-firmware-(kor).md similarity index 89% rename from _pages/en_US/updating-firmware-(kor-twn).md rename to _pages/en_US/updating-firmware-(kor).md index 74a2b48f90..4b08786c27 100644 --- a/_pages/en_US/updating-firmware-(kor-twn).md +++ b/_pages/en_US/updating-firmware-(kor).md @@ -1,5 +1,5 @@ --- -title: "Updating Firmware (KOR/TWN)" +title: "Updating Firmware (KOR)" --- ### Required Reading diff --git a/_pages/en_US/updating-firmware-(twn).md b/_pages/en_US/updating-firmware-(twn).md new file mode 100644 index 0000000000..83e6992b1b --- /dev/null +++ b/_pages/en_US/updating-firmware-(twn).md @@ -0,0 +1,18 @@ +--- +title: "Updating Firmware (TWN)" +--- + +### Required Reading + +To use the Seedminer exploit, you must update your device to the latest system version. + +### What you need + +* An internet connection on your device + +#### Section I - Updating the System + +{% include_relative include/sysupdate.txt cfw="false" %} + +Continue to [Seedminer (TWN)](seedminer-(twn)) +{: .notice--primary} diff --git a/assets/js/selecting.js b/assets/js/selecting.js index ca7227e776..db0f586133 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -144,7 +144,8 @@ function can_miimine(major, minor, native, region, model) { // Seedminer, U/E/J/K region // only 11.16 can run Seedminer function can_seedminer(major, minor, native, region, model) { - let do_redirect_sysupdate = false; + let do_redirect_sysupdate_twn = false; + let do_redirect_sysupdate_kor = false; let do_redirect_twn = false; let do_redirect = false; // 11.16 should always do seedminer on 3DS @@ -153,10 +154,16 @@ function can_seedminer(major, minor, native, region, model) { else if (region == "T") do_redirect_twn = true; } // KOR O3DS on any version should update to 11.16 - else if (model == 0 && region == "K") do_redirect_sysupdate = true; + else if (model == 0 && region == "K") do_redirect_sysupdate_kor = true; + // KOR O3DS on any version should update to 11.16 + else if (region == "T") do_redirect_sysupdate_twn = true; - if (do_redirect_sysupdate) { - window.location.href = "updating-firmware-(kor-twn)"; + if (do_redirect_sysupdate_twn) { + window.location.href = "updating-firmware-(twn)"; + return true; + } + if (do_redirect_sysupdate_kor) { + window.location.href = "updating-firmware-(kor)"; return true; } else if (do_redirect_twn) {