diff --git a/assets/js/selecting.js b/assets/js/selecting.js index aef0af30f2..553ab9a572 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -25,11 +25,17 @@ const major_minor_map = { } // Validate version +// CHN/TWN doesn't have new model +// KOR/CHN/TWN doesn't have 11.17 currently function validate_version(major, minor, native, region, model) { if (model == DEVICE_N3DS && ["C", "T"].includes(region)) { return false; } + if (major == 11 && minor == 17 && ["K", "C", "T"].includes(region)) { + return false; + } + const minor_max = major_minor_map[major]; if (!isNaN(minor_max) && minor > minor_max) { return false;