Update TF2_IsPlayerInCondition (#712)

* Update TF2_IsPlayerInCondition

* Update conditions too
This commit is contained in:
JRiipinen
2017-10-27 07:02:38 -04:00
committed by Nicholas Hastings
parent 27b69559a3
commit 8807939a14
3 changed files with 12 additions and 1 deletions
+8
View File
@@ -581,6 +581,14 @@ stock bool TF2_IsPlayerInCondition(int client, TFCond cond)
return true;
}
}
case 4:
{
int bit = (1 << (iCond - 128));
if ((GetEntProp(client, Prop_Send, "m_nPlayerCondEx4") & bit) == bit)
{
return true;
}
}
default:
ThrowError("Invalid TFCond value %d", iCond);
}