Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
Merge branch 'development' of github.com:Impact123/CallAdmin into dev…
Browse files Browse the repository at this point in the history
…elopment
  • Loading branch information
Impact123 committed Mar 25, 2020
2 parents 9caa359 + 2006fe3 commit de46c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gameserver/calladmin.sp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public void OnPluginStart()
g_hConfirmCall = AutoExecConfig_CreateConVar("sm_calladmin_confirm_call", "1", "Whether or not a call must be confirmed by the client", FCVAR_NONE, true, 0.0, true, 1.0);
g_hSpamTime = AutoExecConfig_CreateConVar("sm_calladmin_spamtime", "25", "An user must wait this many seconds after a report before he can issue a new one", FCVAR_NONE, true, 0.0);
g_hReportTime = AutoExecConfig_CreateConVar("sm_calladmin_reporttime", "300", "An user cannot be reported again for this many seconds", FCVAR_NONE, true, 0.0);
g_hAdminAction = AutoExecConfig_CreateConVar("sm_calladmin_admin_action", "0", "What happens when admins are in-game on report: 0 - Let the report pass, 1 - Block the report and notify the caller and admins in-game about it, 2 - Let the report pass and notify the caller and admins in-game about it", FCVAR_NONE, true, 0.0, true, 1.0);
g_hAdminAction = AutoExecConfig_CreateConVar("sm_calladmin_admin_action", "0", "What happens when admins are in-game on report: 0 - Let the report pass, 1 - Block the report and notify the caller and admins in-game about it, 2 - Let the report pass and notify the caller and admins in-game about it", FCVAR_NONE, true, 0.0, true, 2.0);



Expand Down Expand Up @@ -1468,4 +1468,4 @@ stock void SetClientCookieEx(int client, Handle cookie, const char[] format, any
VFormat(sFormatBuf, sizeof(sFormatBuf), format, 4);

SetClientCookie(client, cookie, sFormatBuf);
}
}

0 comments on commit de46c2d

Please sign in to comment.