Permalink
Browse files

Hack to fix static entities not showing up during demo playback (corr…

…ect?)
  • Loading branch information...
1 parent bc6c990 commit 1aee86b42c3ebc00ea715829ff8110f9e9a0addf @ericwa committed May 9, 2017
Showing with 4 additions and 0 deletions.
  1. +4 −0 quakespasm/Quake/cl_main.c
@@ -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;

0 comments on commit 1aee86b

Please sign in to comment.