diff options
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/world.c b/src/world.c index a07bfcd..c34f17b 100644 --- a/src/world.c +++ b/src/world.c @@ -343,15 +343,9 @@ void updateWorld(World * world, Game * game) { } } - if (killCount != 0) { - printf("%ld\n", killCount); - debugWorld(world); - } - // "bring out your dead!" - for (i = 0; i < killCount; ++i) { + for (i = 0; i < killCount; ++i) removeEntityFromWorld(world, kills[i]); - } // Handle some shit. handleScheduledEntities(world); |