mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-04-20 09:55:38 +00:00
Hack to fix static entities not showing up during demo playback (correct?)
This commit is contained in:
parent
bc6c990dc9
commit
1aee86b42c
1 changed files with 4 additions and 0 deletions
|
@ -233,6 +233,10 @@ void CL_SignonReply (void)
|
|||
MSG_WriteByte (&cls.message, clc_stringcmd);
|
||||
MSG_WriteString (&cls.message, va("name \"%s\"\n", cl_name.string));
|
||||
|
||||
//ericw -- hack to fix static entities not showing up during demo playback
|
||||
if (cls.demoplayback)
|
||||
CL_CheckDownloads();
|
||||
|
||||
cl.sendprespawn = true;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue