Update more to 1.11

This commit is contained in:
Jackz 2022-07-05 13:50:51 -05:00
parent 0718b24855
commit 25a35284cd
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
13 changed files with 36 additions and 22 deletions

View file

@ -272,7 +272,7 @@ public Action L4D2_OnEntityShoved(int client, int entity, int weapon, float vecD
}
public Action OnClientSayCommand(int client, const char[] command, const char[] sArgs) {
if(sArgs[0] == '@') return Plugin_Continue; //Ignore admin chat
if(client <= 0 || sArgs[0] == '@') return Plugin_Continue; //Ignore admin chat or console
static int honkID;
static int profanityID;

View file

@ -280,4 +280,5 @@ Action Timer_SpawnBotsPost(Handle h) {
}
}
}
return Plugin_Handled;
}