Convert scoreboard key to int

This commit is contained in:
Vortrex
2023-02-22 05:24:20 -06:00
parent 549f8a3c59
commit f6d1ee189c

View File

@@ -127,7 +127,7 @@ function setScoreBoardKey(key) {
if (key == -1) {
scoreBoardKey = null;
} else {
scoreBoardKey = key;
scoreBoardKey = toInteger(key);
}
}