Fix p999 issue (was checking for only 666 on makestatic).

This commit is contained in:
Spike 2018-07-19 22:05:16 +01:00 committed by Shpoike
parent b2198414fe
commit 2fbea9a1ea

View file

@ -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;