From 74e074bbef5e7d9e0784539e49e70302139dc999 Mon Sep 17 00:00:00 2001 From: Adam Olsen Date: Thu, 29 Nov 2001 00:23:33 +0000 Subject: [PATCH] - fix the broken failsafe in CL_EntityState_Copy --- qw/source/cl_ents.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qw/source/cl_ents.c b/qw/source/cl_ents.c index fb68fa50c..3f335b001 100644 --- a/qw/source/cl_ents.c +++ b/qw/source/cl_ents.c @@ -131,11 +131,11 @@ CL_EntityState_Copy (entity_state_t *src, entity_state_t *dest, int bits) { // just incase they didn't set the group bits if (bits & U_GROUP_EXTEND2) - bits &= U_EXTEND2; + bits |= U_EXTEND2; if (bits & U_GROUP_EXTEND1) - bits &= U_EXTEND1; + bits |= U_EXTEND1; if (bits & U_GROUP_MOREBITS) - bits &= U_MOREBITS; + bits |= U_MOREBITS; if (bits & U_ORIGIN1) dest->origin[0] = src->origin[0];