diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-28 10:21:04 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-28 10:21:04 -0400 |
commit | ceef5de7d838e97c3d7f990023398181ee1500c2 (patch) | |
tree | 43153a4a24bdc92929cfe5f4e23b2b67deb84ec1 /src/world.cpp | |
parent | da4bd0b57b1ce5cdb56e6f8d9870998cbdd176f4 (diff) |
better arrow collision
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
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 <attack.hpp> #include <common.hpp> #include <components.hpp> #include <debug.hpp> @@ -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<Hit>()) { - game::events.emit<AttackEvent>(vec2(loc.x, loc.y), - AttackType::SmallBoom, e.component<Hit>()->damage); - e.destroy(); - } if (!vel.grounded) { vel.grounded = true; game::engine.getSystem<ParticleSystem>()->addMultiple(20, ParticleType::SmallPoof, |