mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-10 03:02:10 +00:00
- fix the broken failsafe in CL_EntityState_Copy
This commit is contained in:
parent
01e6e14230
commit
74e074bbef
1 changed files with 3 additions and 3 deletions
|
@ -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
|
// just incase they didn't set the group bits
|
||||||
if (bits & U_GROUP_EXTEND2)
|
if (bits & U_GROUP_EXTEND2)
|
||||||
bits &= U_EXTEND2;
|
bits |= U_EXTEND2;
|
||||||
if (bits & U_GROUP_EXTEND1)
|
if (bits & U_GROUP_EXTEND1)
|
||||||
bits &= U_EXTEND1;
|
bits |= U_EXTEND1;
|
||||||
if (bits & U_GROUP_MOREBITS)
|
if (bits & U_GROUP_MOREBITS)
|
||||||
bits &= U_MOREBITS;
|
bits |= U_MOREBITS;
|
||||||
|
|
||||||
if (bits & U_ORIGIN1)
|
if (bits & U_ORIGIN1)
|
||||||
dest->origin[0] = src->origin[0];
|
dest->origin[0] = src->origin[0];
|
||||||
|
|
Loading…
Reference in a new issue