aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp6
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,