Changed string to team

This commit is contained in:
OciXCrom 2018-08-17 22:50:51 +02:00
parent 7e7a0a6e42
commit 36d91e473d
2 changed files with 3 additions and 3 deletions

View File

@ -865,9 +865,9 @@ stock set_task_ex(Float:time, const function[], id = 0, const any:parameter[] =
* *
* @noreturn * @noreturn
*/ */
stock get_players_ex(players[MAX_PLAYERS], &num, GetPlayersFlags:flags = GetPlayers_None, const string[] = "") stock get_players_ex(players[MAX_PLAYERS], &num, GetPlayersFlags:flags = GetPlayers_None, const team[] = "")
{ {
new strFlags[12]; new strFlags[12];
get_flags(_:flags, strFlags, charsmax(strFlags)); get_flags(_:flags, strFlags, charsmax(strFlags));
get_players(players, num, strFlags, string); get_players(players, num, strFlags, team);
} }

View File

@ -1393,7 +1393,7 @@ native get_playersnum(flag = 0);
* *
* @noreturn * @noreturn
*/ */
native get_players(players[MAX_PLAYERS], &num, const flags[] = "", const string[] = ""); native get_players(players[MAX_PLAYERS], &num, const flags[] = "", const team[] = "");
/** /**
* Retrieves argument of client command as string. * Retrieves argument of client command as string.