mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
Allow get_players() as well.
This commit is contained in:
parent
33c0a676fd
commit
76811b7b84
@ -2261,7 +2261,7 @@ static cell AMX_NATIVE_CALL get_players(AMX *amx, cell *params) /* 4 param */
|
|||||||
for (int i = 1; i <= gpGlobals->maxClients; ++i)
|
for (int i = 1; i <= gpGlobals->maxClients; ++i)
|
||||||
{
|
{
|
||||||
CPlayer* pPlayer = GET_PLAYER_POINTER_I(i);
|
CPlayer* pPlayer = GET_PLAYER_POINTER_I(i);
|
||||||
if (pPlayer->ingame)
|
if (pPlayer->initialized)
|
||||||
{
|
{
|
||||||
if (pPlayer->IsAlive() ? (flags & 2) : (flags & 1))
|
if (pPlayer->IsAlive() ? (flags & 2) : (flags & 1))
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user