controlpanel.cpp: Fix bug for "Disconnect" help

This fixes a bug in which providing empty data for the 'disconnect' command for controlpanel will return the 'reconnect' command's syntax help, which can confuse users.
This commit is contained in:
TheLordOfTime
2013-01-29 04:46:55 -05:00
parent 0491e55926
commit fd813c01af
+1 -1
View File
@@ -879,7 +879,7 @@ class CAdminMod : public CModule {
CString sNetwork = sLine.Token(2);
if (sNetwork.empty()) {
PutModule("Usage: Reconnect <username> <network>");
PutModule("Usage: Disconnect <username> <network>");
return;
}