diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 15:46:56 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 15:46:56 +0100 |
commit | b6c7811eae4fa7c51f82c44c1558fcafc79c21e0 (patch) | |
tree | a04b2f095d1f40b992db76ac7a51860539bb309a /game/enemy/EnemyScript.cpp | |
parent | 698628cf1fb1b8a1f68bf6a5672d984bd64be58f (diff) |
queue added
Diffstat (limited to 'game/enemy/EnemyScript.cpp')
-rw-r--r-- | game/enemy/EnemyScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/enemy/EnemyScript.cpp b/game/enemy/EnemyScript.cpp index 8e475a8..06626dd 100644 --- a/game/enemy/EnemyScript.cpp +++ b/game/enemy/EnemyScript.cpp @@ -79,7 +79,7 @@ bool EnemyScript::spawn_enemy(const SpawnEnemyEvent & e) { ai_component.make_oval_path(10, 10, vec2 {x_value, random_height}, 1.5708, true); ai_component.active = true; this->last_fired = std::chrono::steady_clock::now(); - return true; + return false; } bool EnemyScript::on_collide(const CollisionEvent & e) { |