mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-15 00:10:59 +00:00
Fix stupid bug resulting in crashes when loading saved games, reported by TwinBeast.
This commit is contained in:
parent
4894a3b77e
commit
0fb35f3d01
1 changed files with 1 additions and 1 deletions
|
@ -2860,7 +2860,7 @@ void SV_DoDirectConnect(svconnectinfo_t *fte_restrict info)
|
||||||
|
|
||||||
if (newcl)
|
if (newcl)
|
||||||
{ //client is reprising a loaded slot.
|
{ //client is reprising a loaded slot.
|
||||||
if (cl->istobeloaded)
|
if (newcl->istobeloaded)
|
||||||
{
|
{
|
||||||
SV_BroadcastTPrintf(PRINT_HIGH, "%s reprises %s\n", name, newcl->name);
|
SV_BroadcastTPrintf(PRINT_HIGH, "%s reprises %s\n", name, newcl->name);
|
||||||
Con_DPrintf("%s:Using loadzombie\n", svs.name);
|
Con_DPrintf("%s:Using loadzombie\n", svs.name);
|
||||||
|
|
Loading…
Reference in a new issue