From fec9c87394d23b4d9072183e02d3dde1159a85bf Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Thu, 13 Jun 2002 19:38:43 +0000 Subject: [PATCH] Small gib fix --- reaction/game/g_combat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reaction/game/g_combat.c b/reaction/game/g_combat.c index 56e58ade..c5638649 100644 --- a/reaction/game/g_combat.c +++ b/reaction/game/g_combat.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.94 2002/06/13 19:38:43 jbravo +// Small gib fix +// // Revision 1.93 2002/06/11 23:40:18 jbravo // Made the head sphere larger // @@ -1562,7 +1565,7 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int } // never gib in a nodrop - if (g_RQ3_gib.integer > 0 && !self->client->gibbed && ((self->health <= GIB_HEALTH && !(contents & CONTENTS_NODROP) && g_blood.integer) || meansOfDeath == MOD_SUICIDE)) { + if ((g_RQ3_gib.integer > 3 && !self->client->gibbed && (self->health <= GIB_HEALTH && !(contents & CONTENTS_NODROP) && g_blood.integer)) || meansOfDeath == MOD_SUICIDE) { // gib death GibEntity( self, killer ); } else if (self->client->gibbed) {