From 48335323d6eb361b6b89f002a438b7f400c7d9cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C4=81nis=20R=C5=ABcis?= Date: Wed, 31 Mar 2010 20:52:39 +0300 Subject: [PATCH] IRC: tweak messages --- irc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.2