Skip to content
Snippets Groups Projects
Commit 10b608fe authored by Paolo.Brasolin's avatar Paolo.Brasolin
Browse files

fix: #fe remove debug stuff

parent 0682c5b4
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ export default class FightScene extends Phaser.Scene { ...@@ -145,7 +145,7 @@ export default class FightScene extends Phaser.Scene {
}) })
).data; ).data;
// gameStart(this); gameStart(this);
} }
showMissMessage() { showMissMessage() {
...@@ -318,8 +318,7 @@ async function spawn(scene: any) { ...@@ -318,8 +318,7 @@ async function spawn(scene: any) {
scene.time.now; scene.time.now;
const delay = const delay =
(8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000; (8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000;
// setTimeout(() => spawn(scene), Math.max(delay, 2000)); setTimeout(() => spawn(scene), Math.max(delay, 2000));
setTimeout(() => spawn(scene), 10000);
} }
async function spawnFoe(scene: any) { async function spawnFoe(scene: any) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment