Prepare for D-Day

This commit is contained in:
Dries Van Schuylenbergh
2023-04-19 23:06:59 +02:00
parent 92c3101db8
commit 7cac7aa9ca
13 changed files with 184 additions and 33 deletions

View File

@@ -379,7 +379,7 @@ public class JustSignController : AbstractFeedback
// Spawn new symbol every spawn period
float currentTime = Time.time;
if (currentTime - lastSpawn > 2 * currentSong.spawnPeriod && lastSymbolTime > currentTime)
if (currentTime - lastSpawn > currentSong.spawnPeriod && lastSymbolTime > currentTime)
{
lastSpawn = currentTime;
SpawnNewSymbol();