Fixed small issues found in playtesting

This commit is contained in:
Pasha Bibko
2026-01-29 13:54:10 +00:00
parent 13af242e69
commit 69fd62b3ac
8 changed files with 39 additions and 14 deletions

View File

@@ -95,7 +95,7 @@ namespace InterfaceOff
public void AlertOfDespawnedWindow() => SpawnedWindowCount--;
private int SpawnyThingyMajig = 9000; // Sky chose dis
private int SpawnyThingyMajig = 40 * 25; // Sky chose dis
private void FixedUpdate()
{
@@ -106,7 +106,8 @@ namespace InterfaceOff
if (SpawnyThingyMajig == 0)
{
PasswordField.SetActive(true);
SpawnyThingyMajig = Random.Range(2000, 10000);
SpawnyThingyMajig = Random.Range(40 * 15, 40 * 20);
Debug.Log($"[{Time.timeSinceLevelLoad}]");
}
else
{