This commit is contained in:
Jackz 2022-08-04 18:20:59 -05:00
parent 441bcb9b73
commit 9d25a36891
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
3 changed files with 2 additions and 3 deletions

Binary file not shown.

View file

@ -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,

View file

@ -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);