This commit is contained in:
OliverS 2024-04-21 14:33:11 +02:00
commit ab636db3e9
1 changed files with 3 additions and 1 deletions

View File

@ -44,6 +44,8 @@ public class EnemySpawnManager : MonoBehaviour
public void OnPlayButtonClicked() public void OnPlayButtonClicked()
{ {
if (GameManager.Instance.CurrentNumEnemies != 0) return;
HasStarted = true; HasStarted = true;
PopWave(); PopWave();
} }
@ -58,7 +60,7 @@ public class EnemySpawnManager : MonoBehaviour
if (HasStarted && IsAutoPlaying) if (HasStarted && IsAutoPlaying)
time += Time.deltaTime; time += Time.deltaTime;
if (waveQueue.Count > 0 && waveQueue.Peek().spawnTime < time) if (waveQueue.Count > 0 && (GameManager.Instance.CurrentNumEnemies == 0 && IsAutoPlaying))
{ {
PopWave(); PopWave();
} }