Get rid of some hardcoded network recognition

This commit is contained in:
Berke Viktor
2013-04-28 17:01:37 +02:00
parent 2df866bdf8
commit 50373f4ff9
2 changed files with 1 additions and 12 deletions

View File

@@ -817,9 +817,7 @@ inbound_005 (server * serv, char *word[])
}
/* use /NICKSERV */
if (g_ascii_strcasecmp (word[w] + 8, "RusNet") == 0)
serv->nickservtype = 1;
else if (g_ascii_strcasecmp (word[w] + 8, "UniBG") == 0)
if (g_ascii_strcasecmp (word[w] + 8, "UniBG") == 0)
serv->nickservtype = 3;
else if (g_ascii_strcasecmp (word[w] + 8, "QuakeNet") == 0)
serv->nickservtype = 4;