aboutsummaryrefslogtreecommitdiffstats
path: root/src/attack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/attack.cpp')
-rw-r--r--src/attack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attack.cpp b/src/attack.cpp
index e1ce45c..e91b4cd 100644
--- a/src/attack.cpp
+++ b/src/attack.cpp
@@ -48,7 +48,7 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev,
game::engine.getSystem<ParticleSystem>()->addMultiple(15, ParticleType::SmallBlast,
[&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7);
die = !hit.pierce;
- } else if (game::engine.getSystem<WorldSystem>()->isAboveGround(vec2(ppos.x, ppos.y - 5)))
+ } else if (WorldSystem::isAboveGround(vec2(ppos.x, ppos.y - 5)))
die = true;
});