mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
Merge branch 'master' of git://github.com/GreYFoXGTi/DDRace-Server
This commit is contained in:
commit
ecdcf09456
|
@ -894,7 +894,7 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
|
|||
char aBuf[256];
|
||||
str_format(aBuf, sizeof(aBuf), "ClientId=%d Level=%d Rcon='%s'", ClientId, m_aClients[ClientId].m_Authed, pCmd);
|
||||
Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "server", aBuf);
|
||||
Console()->ExecuteLine(pCmd);
|
||||
Console()->ExecuteLine(pCmd, m_aClients[ClientId].m_Authed, ClientId);
|
||||
//Addr = m_NetServer.ClientAddr(ClientId);
|
||||
if(m_aClients[ClientId].m_Authed > 0)
|
||||
{
|
||||
|
@ -977,7 +977,7 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
|
|||
}
|
||||
}
|
||||
}
|
||||
else if(str_comp(pPw, g_Config.m_SvRconPassword) == 0)
|
||||
/*else if(str_comp(pPw, g_Config.m_SvRconPassword) == 0)
|
||||
{
|
||||
CMsgPacker Msg(NETMSG_RCON_AUTH_STATUS);
|
||||
Msg.AddInt(1);
|
||||
|
@ -988,7 +988,7 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
|
|||
char aBuf[256];
|
||||
str_format(aBuf, sizeof(aBuf), "ClientId=%d authed", ClientId);
|
||||
Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "server", aBuf);
|
||||
}
|
||||
}*/
|
||||
else
|
||||
{
|
||||
SendRconLine(ClientId, "Wrong password.");
|
||||
|
|
|
@ -234,7 +234,7 @@ void CConsole::ExecuteLineStroked(int Stroke, const char *pStr, const int Client
|
|||
} else {
|
||||
str_format(aBuf, sizeof(aBuf), "You have low level to use command: %s. Your level: %d. Need level: %d", pCommand->m_pName, ClientLevel, pCommand->m_Level);
|
||||
}
|
||||
Print(aBuf);
|
||||
Print(OUTPUT_LEVEL_STANDARD, "Console",aBuf);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -89,8 +89,8 @@ int CNetServer::Drop(int ClientID, const char *pReason)
|
|||
m_pfnDelClient(ClientID, pReason, m_UserPtr);
|
||||
|
||||
|
||||
if(m_pfnDelClient)
|
||||
m_pfnDelClient(ClientID, m_UserPtr);
|
||||
/* if(m_pfnDelClient)
|
||||
m_pfnDelClient(ClientID, m_UserPtr);*/
|
||||
m_aSlots[ClientID].m_Connection.Disconnect(pReason);
|
||||
BanAddNoDrop(Addr, g_Config.m_SvReconnectTime);
|
||||
return 0;
|
||||
|
@ -524,4 +524,4 @@ void CNetServer::SetMaxClientsPerIP(int Max)
|
|||
Max = NET_MAX_CLIENTS;
|
||||
|
||||
m_MaxClientsPerIP = Max;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue