diff --git a/frontend/src/js/fight_scene.ts b/frontend/src/js/fight_scene.ts index ec8f8a608481c603b2817e71d6497360bca60873..75296742501cc4e22b735133025ea33a02a33f37 100644 --- a/frontend/src/js/fight_scene.ts +++ b/frontend/src/js/fight_scene.ts @@ -345,7 +345,7 @@ async function spawn(scene: any) { scene.time.now; const delay = (8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000; - setTimeout(() => spawn(scene), Math.min(200, delay)); + setTimeout(() => spawn(scene), Math.max(2000, delay)); } async function spawnFoe(scene: FightScene) {