From ceef5de7d838e97c3d7f990023398181ee1500c2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 28 Mar 2017 10:21:04 -0400 Subject: better arrow collision --- src/world.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/world.cpp') diff --git a/src/world.cpp b/src/world.cpp index 353f4d9..9a47576 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -14,7 +14,6 @@ using namespace std::literals::chrono_literals; using namespace tinyxml2; // game headers -#include #include #include #include @@ -1141,11 +1140,6 @@ void WorldSystem::detect(entityx::TimeDelta dt) } else { loc.y = data[line].groundHeight - 0.001f * dt; vel.y = 0; - if (e.has_component()) { - game::events.emit(vec2(loc.x, loc.y), - AttackType::SmallBoom, e.component()->damage); - e.destroy(); - } if (!vel.grounded) { vel.grounded = true; game::engine.getSystem()->addMultiple(20, ParticleType::SmallPoof, -- cgit v1.2.3