diff --git a/src/scene.js b/src/scene.js index 75afa6a..e4e05b8 100644 --- a/src/scene.js +++ b/src/scene.js @@ -292,6 +292,10 @@ class Scene extends Screen { } } + if (this.status === Status.Paused) { + return; + } + this.start(); if (e !== undefined) { this.player.jump(e.clientX / window.innerWidth, e.clientY / window.innerHeight);