Fix late model precaching bug.

This commit is contained in:
Shpoike 2020-06-24 02:49:35 +01:00
parent 1a18a8af47
commit 0f39ae9565
1 changed files with 1 additions and 1 deletions

View File

@ -1160,7 +1160,7 @@ int SV_Precache_Model(const char *s)
{
//let existing clients know about it
MSG_WriteByte(&sv.reliable_datagram, svcdp_precache);
MSG_WriteShort(&sv.reliable_datagram, i|0x8000);
MSG_WriteShort(&sv.reliable_datagram, i|0x0000);
MSG_WriteString(&sv.reliable_datagram, s);
}