Fix various other scripts with broken comparisons

This commit is contained in:
P0nk
2022-08-05 22:33:40 +02:00
parent fcdf3d6e1e
commit bfb2c1cb3d
24 changed files with 33 additions and 33 deletions

View File

@@ -57,7 +57,7 @@ function action(mode, type, selection) {
return;
}
}
while (quest[rand].equals("") && status <= 4) {
while (quest[rand] === "" && status <= 4) {
rand = parseInt(Math.random() * quest.length);
}
if (status <= 4) {