From c6df8a43dddcda39882eefa23c57f63b4bd4e504 Mon Sep 17 00:00:00 2001 From: DannyAAM Date: Sat, 15 Jul 2023 05:00:49 +0800 Subject: [PATCH] add 11.17 blacklist for K/C/T --- assets/js/selecting.js | 6 ++++++ 1 file changed, 6 insertions(+) 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;