Fixed target client index error in TF2 Disguise native (r=me).

This commit is contained in:
Asher Baker 2012-06-13 10:07:02 +01:00
parent 61a28c290b
commit 70f91f8345

View File

@ -175,7 +175,7 @@ cell_t TF2_Disguise(IPluginContext *pContext, const cell_t *params)
// Compatibility fix for the newly-added target parameter
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)];