From: Jānis Rūcis Date: Wed, 31 Mar 2010 17:52:39 +0000 (+0300) Subject: IRC: tweak messages X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=48335323d6eb361b6b89f002a438b7f400c7d9cd;p=xonotic%2Fdarkplaces.git IRC: tweak messages --- diff --git a/irc.c b/irc.c index a1ffb946..6aeeb82b 100644 --- a/irc.c +++ b/irc.c @@ -47,7 +47,7 @@ static int IRC_Connect(const char *addr) if (!LHNETADDRESS_FromString(&address, addr, 6667)) { - Con_Printf("[IRC] Bad server address given: %s.\n", addr); + Con_Printf("[IRC] Bad server address: %s.\n", addr); return 0; } @@ -66,7 +66,7 @@ static int IRC_Connect(const char *addr) return 0; } - Con_Print("[IRC] Connecting to the server...\n"); + Con_Printf("[IRC] Connecting to %s...\n", addr); return 1; } @@ -310,7 +310,7 @@ void IRC_Frame(void) break; case LHNETCONSTATUS_ERROR: - Con_Print("[IRC] Failed to connect to the server.\n"); + Con_Print("[IRC] Connection error.\n"); IRC_Disconnect(); break;