From b5b4e1fcc88b417f3054fd2332a6c8bcbda363e5 Mon Sep 17 00:00:00 2001 From: wolfy852 Date: Fri, 1 Feb 2019 15:42:29 -0600 Subject: [PATCH] Skip over type CORRECTLY, this time. --- 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 58f8b0d9..7cddad08 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -5141,7 +5141,7 @@ void G_GhostTicker(void) for (i = 0; i < count; i++) { g->p += 4; // reserved - type = READUINT32(g->p); + g->p += 4; // backwards compat., type used to be here health = READUINT16(g->p); x = READFIXED(g->p); y = READFIXED(g->p);