This commit is contained in:
kimrdd 2024-02-03 22:42:59 +01:00
commit e2fb134323
1 changed files with 5 additions and 5 deletions

View File

@ -68,12 +68,12 @@ public class NewBehaviourScript : MonoBehaviour
void SpawnWave(float difficulty)
{
SpawnStrongestFirst(difficulty);
//SpawnStrongestFirst(difficulty);
//if (Wave != 0 && Wave % 10 == 0)
// SpawnStrongestFirst(difficulty);
//else
// SpawnRandom(difficulty);
if (Wave != 0 && Wave % 10 == 0)
SpawnStrongestFirst(difficulty);
else
SpawnRandom(difficulty);
}
void SpawnStrongestFirst(float difficulty)