demofile
demofile copied to clipboard
Events not firing
Research
- [X] I searched but did not find an existing issue or discussion about this bug.
Description
On some demos some events are not firing
I encountered missing round_start
event on my matchmaking demo:
https://drive.google.com/file/d/1c3Z6EPaDpCM79dH45HZbCCp80gOOsZoM/view?usp=sharing
demoFile.gameEvents.on("round_start", () => {
console.log("NEW ROUND STARTED", demoFile.gameRules.roundsPlayed);
});
In console it goes:
NEW ROUND STARTED 20
NEW ROUND STARTED 21
NEW ROUND STARTED 23
NEW ROUND STARTED 24
And missing round_end
event on this demo from dedicated server, on rounds 17,18,26:
https://drive.google.com/file/d/1rJUjOB8KIaJz6sBpC-5TcIm7lVN6Rmf3/view?usp=sharing
Code to reproduce
demoFile.gameEvents.on("round_start", () => {
console.log("NEW ROUND STARTED", demoFile.gameRules.roundsPlayed);
});
Affected demos
https://drive.google.com/file/d/1rJUjOB8KIaJz6sBpC-5TcIm7lVN6Rmf3/view?usp=sharing https://drive.google.com/file/d/1c3Z6EPaDpCM79dH45HZbCCp80gOOsZoM/view?usp=sharing