mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
make "Client foo connected" be a normal print instead of a dprint, and
make both that and spectator prints include the ip.
This commit is contained in:
parent
f59c2a2a0b
commit
bff5a4b4b4
1 changed files with 4 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue