From 2fbea9a1eaaada2bd5c9a208704509d4dc9a8312 Mon Sep 17 00:00:00 2001 From: Spike Date: Thu, 19 Jul 2018 22:05:16 +0100 Subject: [PATCH] Fix p999 issue (was checking for only 666 on makestatic). --- Quake/sv_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/sv_main.c b/Quake/sv_main.c index 4d7e7c8c..37afdd13 100644 --- a/Quake/sv_main.c +++ b/Quake/sv_main.c @@ -1108,7 +1108,7 @@ void MSG_WriteStaticOrBaseLine(sizebuf_t *buf, int idx, entity_state_t *state, u } else { - if (protocol == PROTOCOL_FITZQUAKE) //still want to send baseline in PROTOCOL_NETQUAKE, so reset these values + if (protocol == PROTOCOL_FITZQUAKE || protocol == PROTOCOL_RMQ) //still want to send baseline in PROTOCOL_NETQUAKE, so reset these values { if (state->modelindex & 0xFF00) bits |= B_LARGEMODEL;