send notification to enter a password when a client connects to econ. Closes #803

This commit is contained in:
oy 2011-07-31 02:25:55 +02:00
parent 9349af0085
commit aabac3dcfc

View file

@ -16,6 +16,8 @@ int CEcon::NewClientCallback(int ClientID, void *pUser)
pThis->m_aClients[ClientID].m_State = CClient::STATE_CONNECTED;
pThis->m_aClients[ClientID].m_TimeConnected = time_get();
pThis->m_NetConsole.Send(ClientID, "Enter password:");
return 0;
}