Skip to content

Commit

Permalink
Increase straggler time for reactor waves
Browse files Browse the repository at this point in the history
  • Loading branch information
brgmnn committed Jun 28, 2024
1 parent a033140 commit 11a93d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ReactorWave
public void RecalculateWaveSpawnTimes()
{
// Give a 45 second additional buffer for stragglers.
Wave = 45 + EnemyWaves.Max(wave => wave.Duration + wave.SpawnTime);
Wave = 60 + EnemyWaves.Max(wave => wave.Duration + wave.SpawnTime);

// Update each individual wave in the enemy waves to set the right SpawnTimeRel.
foreach (var wave in EnemyWaves)
Expand Down

0 comments on commit 11a93d9

Please sign in to comment.