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

@@ -26,7 +26,7 @@ function start() {
} else {
if (cm.isEventLeader()) {
var currentCombo = eim.getProperty("stage3combo");
if (currentCombo == null || currentCombo.equals("reset")) {
if (currentCombo == null || currentCombo === "reset") {
var newCombo = makeCombo();
eim.setProperty("stage3combo", newCombo);
//cm.playerMessage("Debug: " + newCombo);