mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-06 17:03:21 +00:00
Fix ftt
This commit is contained in:
parent
441bcb9b73
commit
9d25a36891
3 changed files with 2 additions and 3 deletions
Binary file not shown.
|
@ -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,
|
||||
|
|
|
@ -91,7 +91,6 @@ public void OnPluginStart() {
|
|||
RegAdminCmd("sm_healbots", Command_HealTarget, ADMFLAG_CHEATS, "Make bots heal a player");
|
||||
|
||||
HookEvent("player_spawn", Event_PlayerSpawn);
|
||||
HookEvent("player_disconnect", Event_PlayerDisconnect);
|
||||
HookEvent("player_first_spawn", Event_PlayerFirstSpawn);
|
||||
HookEvent("player_death", Event_PlayerDeath);
|
||||
HookEvent("triggered_car_alarm", Event_CarAlarm);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue