From 64508edabc5c7c2c91dd61f4ac625bdaa01025a3 Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 24 Feb 2019 17:59:13 -0800 Subject: [PATCH] d'oh --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index 24804458d..53a48a9b7 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -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;