diff options
Diffstat (limited to 'src/game/game.cpp')
-rw-r--r-- | src/game/game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp index 48f852f..5067df7 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -129,7 +129,8 @@ void state_t::tick(double now_, double dt_) (*i)->sleep(); i = awake_units.erase(i); } else { - (*i)->think(); + if (!(*i)->dead) + (*i)->think(); i++; } } |