diff options
Diffstat (limited to 'src/systems/movement.cpp')
-rw-r--r-- | src/systems/movement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/movement.cpp b/src/systems/movement.cpp index 4eb574d..1a7112a 100644 --- a/src/systems/movement.cpp +++ b/src/systems/movement.cpp @@ -75,8 +75,8 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e // make the entity wander // TODO initialX and range? if (entity.has_component<Wander>()) { - auto vel = entity.component<Wander>()->script(); - direction.x = vel.x; + entity.component<Wander>()->script({LuaVariable("vely", direction.y), + LuaVariable("velx", direction.x)}); /*auto& countdown = entity.component<Wander>()->countdown; if (countdown > 0) { |