mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-07 10:13:20 +00:00
Fix ftt
This commit is contained in:
parent
441bcb9b73
commit
9d25a36891
3 changed files with 2 additions and 3 deletions
|
@ -19,7 +19,7 @@ public Action Command_InstaSpecial(int client, int args) {
|
|||
GetCmdArg(2, arg2, sizeof(arg2));
|
||||
}
|
||||
char target_name[MAX_TARGET_LENGTH];
|
||||
int target_list[MaxClients], target_count;
|
||||
int target_list[MAXPLAYERS], target_count;
|
||||
bool tn_is_ml;
|
||||
if ((target_count = ProcessTargetString(
|
||||
arg1,
|
||||
|
@ -85,7 +85,7 @@ public Action Command_InstaSpecialFace(int client, int args) {
|
|||
GetCmdArg(2, arg2, sizeof(arg2));
|
||||
}
|
||||
char target_name[MAX_TARGET_LENGTH];
|
||||
int target_list[MaxClients], target_count;
|
||||
int target_list[MAXPLAYERS], target_count;
|
||||
bool tn_is_ml;
|
||||
if ((target_count = ProcessTargetString(
|
||||
arg1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue