This commit is contained in:
James R 2019-02-24 17:59:13 -08:00
parent e35f65eee2
commit 286866d2b6

View file

@ -5074,7 +5074,7 @@ void G_WriteGhostTic(mobj_t *ghost)
if (abs(ghost->x-oldghost.x) > MAXMOM
|| abs(ghost->y-oldghost.y) > MAXMOM
|| abs(ghost->z-oldghost.z) > MAXMOM
|| ( leveltime & 255 == 1 )) // Hack to enable slightly nicer resyncing
|| ( leveltime & 255 ) == 1) // Hack to enable slightly nicer resyncing
{
oldghost.x = ghost->x;
oldghost.y = ghost->y;