From 0a3aa8b8a173d8d23c49fda23ff7a98cebe26cf7 Mon Sep 17 00:00:00 2001 From: Danny Tsai Date: Sat, 27 May 2023 18:54:21 +0800 Subject: [PATCH] Fix broken KOR SSLoth-Browser again... actually fix more this time Well, I'll say never mix integer with bool This new version literally inverted new/old for kor I originally wrote it as !old, it's literally now !(new=1=true) --- assets/js/selecting.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/js/selecting.js b/assets/js/selecting.js index db0f586133..6203916800 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -45,11 +45,11 @@ function can_ssloth(major, minor, native, region, model) { } else if (region == "K") { if ( - (!model && minor == 4 && native == 33) || - (!model && minor == 5 && native == 34) || - (!model && minor == 6 && native == 35) || - (!model && minor == 7 && native == 35) || - (!model && minor == 8 && native == 35) || + (model && minor == 4 && native == 33) || + (model && minor == 5 && native == 34) || + (model && minor == 6 && native == 35) || + (model && minor == 7 && native == 35) || + (model && minor == 8 && native == 35) || (minor == 9 && native == 36) || (minor == 10 && native == 37) || (minor == 12 && native == 38) ||