mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
zinx' klik mod makes heavy use of makestatic and that was causing the
singon buffer to overflow. call SV_FlushSignon before writing the static entity data.
This commit is contained in:
parent
92db391e7c
commit
7af8e2952e
1 changed files with 3 additions and 0 deletions
|
@ -1156,6 +1156,9 @@ PF_makestatic (progs_t *pr)
|
|||
|
||||
ent = P_EDICT (pr, 0);
|
||||
|
||||
// flush the signon message out to a separate buffer if nearly full
|
||||
SV_FlushSignon ();
|
||||
|
||||
MSG_WriteByte (&sv.signon, svc_spawnstatic);
|
||||
|
||||
model = PR_GetString (pr, SVstring (ent, model));
|
||||
|
|
Loading…
Reference in a new issue