diff options
author | bd <bdunahu@operationnull.com> | 2025-05-29 18:29:15 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-29 18:29:15 -0400 |
commit | c4f3d4e0f6cae35c020e888be5689181b25342c5 (patch) | |
tree | 61c3f7aac37092ae4ff0ee163871e3fc40c87fcc /scripts/game_data.gd | |
parent | c121b6fcd2286d4b7d3f905d1e34fb6547f915a4 (diff) |
Add the 'knight' crawler, more attempts to balance first waves
Diffstat (limited to 'scripts/game_data.gd')
-rw-r--r-- | scripts/game_data.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/game_data.gd b/scripts/game_data.gd index cc20c13..8890eff 100644 --- a/scripts/game_data.gd +++ b/scripts/game_data.gd @@ -56,7 +56,7 @@ func start_spawning(): func stop_spawning(): _is_spawning = false - if (_current_wave > game_stats_config.wave_data.size()): + if (_current_wave >= game_stats_config.wave_data.size()): # TODO print("win!") else: |