- fix the broken failsafe in CL_EntityState_Copy

This commit is contained in:
Adam Olsen 2001-11-29 00:23:33 +00:00
parent 01e6e14230
commit 74e074bbef

View file

@ -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];