Fixed target client index error in TF2 Disguise native (r=me).
This commit is contained in:
parent
61a28c290b
commit
70f91f8345
@ -175,7 +175,7 @@ cell_t TF2_Disguise(IPluginContext *pContext, const cell_t *params)
|
|||||||
// Compatibility fix for the newly-added target parameter
|
// Compatibility fix for the newly-added target parameter
|
||||||
if (params[0] >= 4 && params[4] > 0 && !(pTarget = UTIL_GetCBaseEntity(params[4], true)))
|
if (params[0] >= 4 && params[4] > 0 && !(pTarget = UTIL_GetCBaseEntity(params[4], true)))
|
||||||
{
|
{
|
||||||
return pContext->ThrowNativeError("Target client index %d is not valid", params[1]);
|
return pContext->ThrowNativeError("Target client index %d is not valid", params[4]);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char vstk[sizeof(void *) + 2*sizeof(int) + sizeof(bool)];
|
unsigned char vstk[sizeof(void *) + 2*sizeof(int) + sizeof(bool)];
|
||||||
|
Loading…
Reference in New Issue
Block a user