From bff5a4b4b4646a223dae2dea5a1b94c8e513c0af Mon Sep 17 00:00:00 2001 From: Adam Olsen Date: Thu, 20 Sep 2001 19:50:24 +0000 Subject: [PATCH] make "Client foo connected" be a normal print instead of a dprint, and make both that and spectator prints include the ip. --- qw/source/sv_main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qw/source/sv_main.c b/qw/source/sv_main.c index 4ded2231b..e22a55a4e 100644 --- a/qw/source/sv_main.c +++ b/qw/source/sv_main.c @@ -872,9 +872,11 @@ SVC_DirectConnect (void) newcl->spawn_parms[i] = sv_globals.parms[i]; if (newcl->spectator) - SV_Printf ("Spectator %s connected\n", newcl->name); + SV_Printf ("Spectator %s (%s) connected\n", newcl->name, + NET_AdrToString (adr)); else - Con_DPrintf ("Client %s connected\n", newcl->name); + Con_Printf ("Client %s (%s) connected\n", newcl->name, + NET_AdrToString (adr)); newcl->sendinfo = true; // QuakeForge stuff.