fix: clean formatting issues
🔍 Lint / 🪄 Check lint (push) Has been cancelled
🔍 Lint / 🎨 Check format (push) Has been cancelled
🔍 Lint / 🔎 Typecheck (push) Has been cancelled
📊 Quality / 🔒 Security Audit (push) Has been cancelled
📊 Quality / 📋 Dependency Freshness (push) Has been cancelled
📊 Quality / 📦 Bundle Size (push) Has been cancelled
🔍 Lint / 🏗 Build (push) Has been cancelled

This commit is contained in:
Tom Boullay
2026-05-13 11:03:18 +02:00
parent 48f8de5ea5
commit 7785a6c9d7
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -106,7 +106,8 @@ export function PlayerController({
const velocity = useRef(new THREE.Vector3());
const onFloor = useRef(false);
const wantsJump = useRef(false);
const initializedRef = useRef(false); const canMove = useGameStore((state) => state.missionFlow.canMove);
const initializedRef = useRef(false);
const canMove = useGameStore((state) => state.missionFlow.canMove);
const capsule = useRef(createSpawnCapsule(spawnPosition));