mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
oob bugfix and fix gem count reports in MP
This commit is contained in:
parent
9b8b908524
commit
d6a97365a8
2 changed files with 6 additions and 0 deletions
|
|
@ -2437,6 +2437,8 @@ class MarbleWorld extends Scheduler {
|
||||||
alarmSound.stop();
|
alarmSound.stop();
|
||||||
alarmSound = null;
|
alarmSound = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.cancel(marble.oobSchedule);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -835,6 +835,10 @@ class PlayGui {
|
||||||
public function resetPlayerScores() {
|
public function resetPlayerScores() {
|
||||||
for (player in playerList) {
|
for (player in playerList) {
|
||||||
player.score = 0;
|
player.score = 0;
|
||||||
|
player.r = 0;
|
||||||
|
player.y = 0;
|
||||||
|
player.b = 0;
|
||||||
|
player.p = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
redrawPlayerList();
|
redrawPlayerList();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue