Hotfix for some DSL bugs (For node not working, Exploration not taking next layers into account)

This commit is contained in:
2026-05-19 20:59:15 +02:00
parent dc3912fa70
commit 121cc1eb03
8 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ public class SurvivalState
public void Update(double delta)
{
if (isDead) return;
if (isDead || GameData.debugMode) return;
elapsedSeconds += delta;
float drainModifier = IsInGracePeriod() ? 0.35f : 1f;