diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-05-04 13:59:58 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-05-04 13:59:58 +0000 |
commit | 590018b5cd476a4f2ee8963f5342d0a6c5adcdcb (patch) | |
tree | 77b0a8097c22760e6d13644b4bbf94b64c78fd10 /code/server | |
parent | 01c266dda2a707782bc6c2d58c7c8ea3f19803ba (diff) | |
download | ioquake3-aero-590018b5cd476a4f2ee8963f5342d0a6c5adcdcb.tar.gz ioquake3-aero-590018b5cd476a4f2ee8963f5342d0a6c5adcdcb.zip |
- Added SV_Shutdown to Linux signal handler to ensure that clients don't hang when server gets killed, as suggested by Tony J. White
- Added newline to final message sent to clients.
- Added check for whether client is running at all before CL_Shutdown runs through.
git-svn-id: svn://svn.icculus.org/quake3/trunk@738 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/server')
-rw-r--r-- | code/server/sv_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/server/sv_init.c b/code/server/sv_init.c index 92dd6ad..8472adf 100644 --- a/code/server/sv_init.c +++ b/code/server/sv_init.c @@ -646,7 +646,7 @@ void SV_FinalMessage( char *message ) { if (cl->state >= CS_CONNECTED) { // don't send a disconnect to a local client if ( cl->netchan.remoteAddress.type != NA_LOOPBACK ) { - SV_SendServerCommand( cl, "print \"%s\"\n", message ); + SV_SendServerCommand( cl, "print \"%s\n\"\n", message ); SV_SendServerCommand( cl, "disconnect" ); } // force a snapshot to be sent |