mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-04-23 23:13:43 +03:00
Changed string to team
This commit is contained in:
parent
7e7a0a6e42
commit
36d91e473d
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user