aboutsummaryrefslogtreecommitdiff
path: root/game/enemy
diff options
context:
space:
mode:
Diffstat (limited to 'game/enemy')
-rw-r--r--game/enemy/BattleScript.cpp2
-rw-r--r--game/enemy/EnemyScript.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/game/enemy/BattleScript.cpp b/game/enemy/BattleScript.cpp
index 4260c42..6d96ef6 100644
--- a/game/enemy/BattleScript.cpp
+++ b/game/enemy/BattleScript.cpp
@@ -47,5 +47,5 @@ bool BattleScript::create_battle(const BattleStartEvent & e) {
script.game_object_id
);
}
- return true;
+ return false;
}
diff --git a/game/enemy/EnemyScript.cpp b/game/enemy/EnemyScript.cpp
index 07ed9e8..8cf8b80 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) {