mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
Fix late model precaching bug.
This commit is contained in:
parent
1a18a8af47
commit
0f39ae9565
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue