From c6107fcd120cd1d6dee54ca86edae9024012c9cc Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 28 May 2025 07:10:17 +0200 Subject: [PATCH] Adjust startY position in spawnSpirit and spawnSpiritWithOffset methods --- node/server/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/server/public/app.js b/node/server/public/app.js index e2f31e5..e58b8ff 100644 --- a/node/server/public/app.js +++ b/node/server/public/app.js @@ -290,7 +290,7 @@ class SpinnerController { } async spawnSpiritWithOffset(spiritData, timeSinceSpawnMs = 0, spiritIntervalMs = 20000) { - let startY = 15.5; + let startY = 18.05; let offset = (typeof timeSinceSpawnMs === 'number' && timeSinceSpawnMs > 0) ? timeSinceSpawnMs / 1000 : 0; let lifeTime = (spiritIntervalMs ? spiritIntervalMs : 20000) / 1000; const moveSpeed = 0.8;