diff options
Diffstat (limited to 'code/server/sv_init.c')
-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 02bd910..92dd6ad 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\"", message ); + SV_SendServerCommand( cl, "print \"%s\"\n", message ); SV_SendServerCommand( cl, "disconnect" ); } // force a snapshot to be sent |