Add more verbose output when setting/getting MinClients

This commit is contained in:
John Reese
2015-10-15 11:08:48 -07:00
parent fdff38f0e6
commit 8d7ea21998

View File

@@ -152,10 +152,10 @@ public:
void OnMinClientsCommand(const CString& sLine) {
if (sLine.Token(1).empty()) {
PutModule(CString(m_iMinClients));
PutModule("Current MinClients setting: " + CString(m_iMinClients));
} else {
SetMinClients(sLine.Token(1).ToUInt());
PutModule("MinClients set");
PutModule("MinClients set to " + CString(m_iMinClients));
}
}