progs: add missing byte to svc_fitz_spawnstatic2

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-01-17 19:47:00 +10:30
parent 9929bc34c2
commit 57761da674

View File

@ -1783,10 +1783,12 @@ PF_makestatic(void)
#endif
}
if (bits)
if (bits) {
MSG_WriteByte(&sv.signon, svc_fitz_spawnstatic2);
else
MSG_WriteByte(&sv.signon, bits);
} else {
MSG_WriteByte(&sv.signon, svc_spawnstatic);
}
SV_WriteModelIndex(&sv.signon, SV_ModelIndex(PR_GetString(ent->v.model)), bits);
#endif
#ifdef QW_HACK