Skip to content

Commit

Permalink
Client|Minor: Use vector utility routines
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 25, 2012
1 parent 51df6f5 commit 6fab9fb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions doomsday/engine/portable/src/cl_mobj.c
Expand Up @@ -980,9 +980,7 @@ void ClMobj_ReadDelta2(boolean skip)
{
// Oopsie, on second thought we shouldn't do this move.
ClMobj_UnsetPosition(mo);
mo->pos[VX] = oldState.pos[VX];
mo->pos[VY] = oldState.pos[VY];
mo->pos[VZ] = oldState.pos[VZ];
V3_Copy(mo->pos, oldState.pos);
mo->floorZ = oldState.floorZ;
mo->ceilingZ = oldState.ceilingZ;
ClMobj_SetPosition(mo);
Expand Down

0 comments on commit 6fab9fb

Please sign in to comment.