From 5f34f972340c5fdf81fd2bc8b1530f511b7157cb Mon Sep 17 00:00:00 2001
From: Paolo Brasolin <paolo.brasolin@eurac.edu>
Date: Wed, 23 Mar 2022 16:11:41 +0100
Subject: [PATCH] fix: #fe get rid of debug shortcircuit

---
 frontend/src/js/fight_scene.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/frontend/src/js/fight_scene.ts b/frontend/src/js/fight_scene.ts
index 58c0019..0ba44c3 100644
--- a/frontend/src/js/fight_scene.ts
+++ b/frontend/src/js/fight_scene.ts
@@ -318,7 +318,6 @@ function gameStart(scene: any) {
 
 async function spawn(scene: any) {
   await spawnFoe(scene);
-  return;
   scene.time.now;
   const delay =
     (8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000;
-- 
GitLab