aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components.cpp b/src/components.cpp
index af746ab..6571e2f 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -50,7 +50,7 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
// make the entity wander
// TODO initialX and range?
- if (entity.has_component<Aggro>()) {
+ if (0 && entity.has_component<Aggro>()) {
auto ppos = game::engine.getSystem<PlayerSystem>()->getPosition();
if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
auto& h = entity.component<Health>()->health;