mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
Fix for ugly 'unknown: #' messages at the end of a demo.
This commit is contained in:
parent
9e38c05969
commit
ea7c4363ba
1 changed files with 5 additions and 5 deletions
|
@ -993,14 +993,14 @@ void CL_ConnectionlessPacket (void)
|
|||
return;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (c == svc_disconnect) {
|
||||
Con_Printf ("disconnect\n");
|
||||
|
||||
Host_EndGame ("Server disconnected");
|
||||
if (cls.demoplayback)
|
||||
Host_EndGame ("End of demo");
|
||||
else
|
||||
Con_Printf ("svc_disconnect\n");
|
||||
// Host_EndGame ("Server disconnected");
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
Con_Printf ("unknown: %c\n", c);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue