oob bugfix and fix gem count reports in MP

This commit is contained in:
RandomityGuy 2024-11-02 01:34:16 +05:30
parent 9b8b908524
commit d6a97365a8
2 changed files with 6 additions and 0 deletions

View file

@ -2437,6 +2437,8 @@ class MarbleWorld extends Scheduler {
alarmSound.stop();
alarmSound = null;
}
this.cancel(marble.oobSchedule);
}
}

View file

@ -835,6 +835,10 @@ class PlayGui {
public function resetPlayerScores() {
for (player in playerList) {
player.score = 0;
player.r = 0;
player.y = 0;
player.b = 0;
player.p = 0;
}
redrawPlayerList();