From a0b416c41297fa96405f337b68d80f5aa1f56b45 Mon Sep 17 00:00:00 2001 From: neru Date: Mon, 1 Jun 2026 15:39:36 -0300 Subject: [PATCH] fix: remove dbg loop counts --- src/app/fear/state.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/fear/state.ts b/src/app/fear/state.ts index e01994b..0ce2159 100644 --- a/src/app/fear/state.ts +++ b/src/app/fear/state.ts @@ -10,9 +10,9 @@ export const FEAR_SETTINGS = { WALL_BUFFER: 0.6, CREATURE_SPEED: 8, - EVENT_NARROW_LOOP_COUNT: 1, - EVENT_RUST_LOOP_COUNT: 2, - EVENT_FINALE_LOOP_COUNT: 3 + EVENT_NARROW_LOOP_COUNT: 2, + EVENT_RUST_LOOP_COUNT: 4, + EVENT_FINALE_LOOP_COUNT: 5 }; const listeners = new Set<() => void>();