From 37f33ad4ade1fb7eb9dcbb67f05db13fdbca8e14 Mon Sep 17 00:00:00 2001 From: Knightmare66 Date: Fri, 7 Jun 2019 17:19:26 -0400 Subject: [PATCH] Made gibs SOLID_TRIGGER as well. --- game/g_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/g_misc.c b/game/g_misc.c index 7f699fb..6868b4e 100644 --- a/game/g_misc.c +++ b/game/g_misc.c @@ -597,7 +597,7 @@ void ThrowDebris (edict_t *self, char *modelname, float speed, vec3_t origin, in chunk->movetype = MOVETYPE_BOUNCE; VectorSet (chunk->mins, -1, -1, -1); VectorSet (chunk->maxs, 1, 1, 1); - chunk->solid = SOLID_NOT; + chunk->solid = SOLID_TRIGGER; // Knightmare- was SOLID_NOT chunk->avelocity[0] = random()*600; chunk->avelocity[1] = random()*600; chunk->avelocity[2] = random()*600;