Skip to content

Commit

Permalink
selecting.js: skater supports 11.15
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyuwuu committed Mar 29, 2024
1 parent 89d9928 commit 29c68d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/js/selecting.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ function can_safecerthax(major, minor, native, region, model) {

// super-skaterhax
// N3DS only
// EUR/JPN/USA: 11.16-11.17
// KOR: 11.16 only, KOR does not have 11.17
// EUR/JPN/USA: 11.15-11.17
// KOR: 11.15-11.16 only, KOR does not have 11.17
// CHN/TWN has no N3DS
function can_superskaterhax(major, minor, native, region, model) {
let do_redirect = false;
// N3DS only
if(model == DEVICE_N3DS) {
if (major == 11) {
if (minor >= 16) do_redirect = true;
if (minor >= 15) do_redirect = true;
}
}

Expand Down Expand Up @@ -176,7 +176,7 @@ function can_mset9(major, minor, native, region, model) {
- All regions
- O3DS only
- super-skaterhax
- 11.16 - 11.17
- 11.15 - 11.17
- USA / EUR / JPN / KOR
- N3DS only
- MSET9
Expand Down

0 comments on commit 29c68d0

Please sign in to comment.