From 6b3cb61ef4b390104e86154022fcd2de3ce86d7b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 28 May 2025 05:41:21 +0200 Subject: [PATCH] Increase vertical despawn speed in Spirit class --- 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 48cfece..a63ffc4 100644 --- a/node/server/public/app.js +++ b/node/server/public/app.js @@ -346,7 +346,7 @@ class Spirit { } } // Vertikales Despawn-Movement - this.grp.position.y -= 0.5 * dt; + this.grp.position.y -= 0.8 * dt; // Nach Lebenszeit entfernen if (t > this.lifeTime) { this.dispose();