diff options
Diffstat (limited to 'src/components.cpp')
-rw-r--r-- | src/components.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components.cpp b/src/components.cpp index dcb123e..732e21f 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; |