diff --git a/front/src/Phaser/Game/Game.ts b/front/src/Phaser/Game/Game.ts index 6a48572a..50bfb17a 100644 --- a/front/src/Phaser/Game/Game.ts +++ b/front/src/Phaser/Game/Game.ts @@ -55,6 +55,9 @@ export class Game extends Phaser.Game { // The final event before the step repeats. Your last chance to do anything to the canvas before it all starts again. eventEmitter.emit(Events.POST_RENDER, renderer, time, delta); + } else { + // @ts-ignore + this.scene.isProcessing = false; } }