diff options
| -rw-r--r-- | src/game/game.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp index cf8fa1a..bc8d3c7 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -422,11 +422,16 @@ void state_t::explosion(v2f_t x)  	for (size_t i = 0; i < 60; i++) {  		v2f_t end;  		world::trace_t trace; +		fx_tracer_t *tracer;  		entity_t *ent;  		int damage;  		end = x + prng.unit_vec2() * 6.0f;  		trace = world.ray_v_all(x, end, CF_SOLID|CF_BODY|CF_BODY_SMALL|CF_DECOS, nullptr); + +		tracer = new fx_tracer_t(this, x, trace.end); +		tracer->place(&world); +  		if (!trace.hit)  			continue;  | 
