Allow multiple clients for sm_ftl

This commit is contained in:
Jackzie 2021-10-16 12:37:43 -05:00
parent 41efdd80d7
commit 01e6c7fe00
No known key found for this signature in database
GPG key ID: 1E834FE36520537A

View file

@ -316,23 +316,25 @@ public Action Command_ListTheTrolls(int client, int args) {
GetCmdArg(1, arg1, sizeof(arg1));
static char target_name[MAX_TARGET_LENGTH];
int target_list[1], target_count;
int target_list[MAXPLAYERS], target_count;
bool tn_is_ml;
if ((target_count = ProcessTargetString(
arg1,
client,
target_list,
1,
COMMAND_FILTER_NO_MULTI,
MAXPLAYERS,
0,
target_name,
sizeof(target_name),
tn_is_ml)) <= 0
&& target_list[0] > 0) {
|| target_list[0] == 0) {
/* This function replies to the admin with a failure message */
ReplyToTargetError(client, target_count);
return Plugin_Handled;
}
int target = target_list[0];
for(int p = 0; p < target_count; p++) {
int target = target_list[p];
if(IsPlayerAlive(target))
ReplyToCommand(client, "> Active Trolls for %N:", target);
else
@ -362,6 +364,7 @@ public Action Command_ListTheTrolls(int client, int args) {
ReplyToCommand(client, trollIds[j]);
}
}
}
return Plugin_Handled;
}