From 8fd8e782d84282da7e1360f725153abb25979c92 Mon Sep 17 00:00:00 2001 From: OciXCrom Date: Thu, 30 Aug 2018 20:15:22 +0200 Subject: [PATCH] Change team to string --- plugins/include/amxmisc.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/include/amxmisc.inc b/plugins/include/amxmisc.inc index 944e8213..5ed85d90 100755 --- a/plugins/include/amxmisc.inc +++ b/plugins/include/amxmisc.inc @@ -861,13 +861,13 @@ stock set_task_ex(Float:time, const function[], id = 0, const any:parameter[] = * GetPlayers_IncludeConnecting - include connecting clients * GetPlayers_MatchAllFlags - match with all of the specified admin flags * GetPlayers_MatchAnyFlags - match with any of the specified admin flags - * @param team String to match against if the "e", "f", "j" or "k" flag is specified + * @param string String to match against if the "e", "f", "j" or "k" flag is specified * * @noreturn */ -stock get_players_ex(players[MAX_PLAYERS], &num, GetPlayersFlags:flags = GetPlayers_None, const team[] = "") +stock get_players_ex(players[MAX_PLAYERS], &num, GetPlayersFlags:flags = GetPlayers_None, const string[] = "") { new strFlags[12]; get_flags(_:flags, strFlags, charsmax(strFlags)); - get_players(players, num, strFlags, team); + get_players(players, num, strFlags, string); }