Remove debug

This commit is contained in:
Jackz 2022-08-24 11:01:08 -05:00
parent dd2f1b45bd
commit 86573cf1a6
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
2 changed files with 0 additions and 2 deletions

View file

@ -41,14 +41,12 @@ public Action OnFriendAction( BehaviorAction action, int actor, BehaviorAction p
if(IsFakeClient(target)) {
// If target is a bot, not idle player, ignore
if(GetEntProp(target, Prop_Send, "m_humanSpectatorUserID") == 0) {
PrintToServer("Preventing %N from healing bot %N", actor, target);
result.type = DONE;
return Plugin_Handled;
}
}
// If they are not black and white, also stop
if(!GetEntProp(target, Prop_Send, "m_bIsOnThirdStrike")) { //If real player and not black and white, stop
PrintToServer("Preventing %N from healing %N, not black & white", actor, target);
result.type = DONE;
return Plugin_Handled;
}