Added client id to MultiTargetFilter forward.

This commit is contained in:
BotoX
2019-09-10 11:22:05 +02:00
committed by BotoX
parent d93f6984cc
commit b68e032cc2
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -137,11 +137,14 @@ stock void ReplyToTargetError(int client, int reason)
*
* @param pattern Pattern name.
* @param clients Array to fill with unique, valid client indexes.
* @param client Client that triggered this filter.
* @return True if pattern was recognized, false otherwise.
*/
typeset MultiTargetFilter {
function bool (const char[] pattern, Handle clients);
function bool (const char[] pattern, ArrayList clients);
function bool (const char[] pattern, Handle clients, int client);
function bool (const char[] pattern, ArrayList clients, int client);
}
/**