diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-17 22:17:30 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-17 22:17:30 -0400 |
commit | 19ade83b74aa66c80129409d97c2c98fa8b8534c (patch) | |
tree | ed8fdfb53a302d1e236cb74b7f0413f83f55020d /src/components.cpp | |
parent | bf01660ab468f49d63a133c28131ab21bba3a1a1 (diff) |
bow & arrow draft
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 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; |