From 799a5abc0b92dc26c4bda3beda8ff566e0096877 Mon Sep 17 00:00:00 2001 From: Shpoike Date: Wed, 24 Jun 2020 02:49:35 +0100 Subject: [PATCH] Fix late model precaching bug. --- quakespasm/Quake/pr_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quakespasm/Quake/pr_cmds.c b/quakespasm/Quake/pr_cmds.c index da4ea35e..0f93d4f7 100644 --- a/quakespasm/Quake/pr_cmds.c +++ b/quakespasm/Quake/pr_cmds.c @@ -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); }