From f6b478403e73c9d85f32d6ab6014bb45f82dd503 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 21 Apr 2018 14:56:23 +0200 Subject: Redo how explosions deal damage. --- src/game/rocket.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/game/rocket.cpp') diff --git a/src/game/rocket.cpp b/src/game/rocket.cpp index 5310922..ccdc788 100644 --- a/src/game/rocket.cpp +++ b/src/game/rocket.cpp @@ -64,6 +64,7 @@ void rocket_t::on_think(void) bullet_miss = new fx_bullet_miss_t(game, trace.end, true); bullet_miss->place(world); } else { + cmodel.ignore = true; game->explosion(trace.end); } -- cgit