aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 9a47576..3688e98 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -1089,9 +1089,10 @@ void WorldSystem::detect(entityx::TimeDelta dt)
{
game::entities.each<Health>(
[](entityx::Entity e, Health& h) {
- if (h.health <= 0)
+ if (h.health <= 0) {
e.kill();
//e.destroy();
+ }
});
game::entities.each<Grounded, Position, Solid>(