Support for arbitrary max clients
This commit is contained in:
parent
0d548fb60f
commit
0036f44d4f
@ -229,6 +229,8 @@ CDetour *g_pDetour_SwingOrStab = NULL;
|
|||||||
int g_SH_SkipTwoEntitiesShouldHitEntity = 0;
|
int g_SH_SkipTwoEntitiesShouldHitEntity = 0;
|
||||||
int g_SH_SimpleShouldHitEntity = 0;
|
int g_SH_SimpleShouldHitEntity = 0;
|
||||||
|
|
||||||
|
int g_iMaxPlayers = 0;
|
||||||
|
|
||||||
uintptr_t g_CTraceFilterNoNPCsOrPlayer = 0;
|
uintptr_t g_CTraceFilterNoNPCsOrPlayer = 0;
|
||||||
CTraceFilterSkipTwoEntities *g_CTraceFilterSkipTwoEntities = NULL;
|
CTraceFilterSkipTwoEntities *g_CTraceFilterSkipTwoEntities = NULL;
|
||||||
CTraceFilterSimple *g_CTraceFilterSimple = NULL;
|
CTraceFilterSimple *g_CTraceFilterSimple = NULL;
|
||||||
@ -384,7 +386,7 @@ bool ShouldHitEntity(IHandleEntity *pHandleEntity, int contentsMask)
|
|||||||
|
|
||||||
int iTeam = 0;
|
int iTeam = 0;
|
||||||
|
|
||||||
if(index > SM_MAXPLAYERS && g_pPhysboxToClientMap && index < 2048)
|
if(index > g_iMaxPlayers && g_pPhysboxToClientMap && index < 2048)
|
||||||
{
|
{
|
||||||
index = g_pPhysboxToClientMap[index];
|
index = g_pPhysboxToClientMap[index];
|
||||||
}
|
}
|
||||||
@ -393,7 +395,7 @@ bool ShouldHitEntity(IHandleEntity *pHandleEntity, int contentsMask)
|
|||||||
{
|
{
|
||||||
iTeam = -index;
|
iTeam = -index;
|
||||||
}
|
}
|
||||||
else if(index < 1 || index > SM_MAXPLAYERS)
|
else if(index < 1 || index > g_iMaxPlayers)
|
||||||
{
|
{
|
||||||
RETURN_META_VALUE(MRES_IGNORED, true);
|
RETURN_META_VALUE(MRES_IGNORED, true);
|
||||||
}
|
}
|
||||||
@ -505,6 +507,8 @@ bool CSSFixes::SDK_OnLoad(char *error, size_t maxlength, bool late)
|
|||||||
{
|
{
|
||||||
srand((unsigned int)time(NULL));
|
srand((unsigned int)time(NULL));
|
||||||
|
|
||||||
|
g_iMaxPlayers = playerhelpers->GetMaxClients();
|
||||||
|
|
||||||
char conf_error[255] = "";
|
char conf_error[255] = "";
|
||||||
if(!gameconfs->LoadGameConfigFile("CSSFixes", &g_pGameConf, conf_error, sizeof(conf_error)))
|
if(!gameconfs->LoadGameConfigFile("CSSFixes", &g_pGameConf, conf_error, sizeof(conf_error)))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user