mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-03 06:20:57 +00:00
Fix p999 issue (was checking for only 666 on makestatic).
This commit is contained in:
parent
b2198414fe
commit
2fbea9a1ea
1 changed files with 1 additions and 1 deletions
|
@ -1108,7 +1108,7 @@ void MSG_WriteStaticOrBaseLine(sizebuf_t *buf, int idx, entity_state_t *state, u
|
||||||
}
|
}
|
||||||
else
|
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)
|
if (state->modelindex & 0xFF00)
|
||||||
bits |= B_LARGEMODEL;
|
bits |= B_LARGEMODEL;
|
||||||
|
|
Loading…
Reference in a new issue