You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: addons/sourcemod/scripting/TriggerWatcher.sp
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -68,12 +68,14 @@ public void OnPluginStart()
68
68
}
69
69
70
70
/* CONVARS */
71
-
g_hCVar_SpamDelay=CreateConVar("sm_TriggerWatcher_block_spam_delay", "5", "Time to wait before notifying the next button press", FCVAR_NONE, true, 1.0, true, 60.0);
71
+
g_hCVar_SpamDelay=CreateConVar("sm_TriggerWatcher_block_spam_delay", "5", "Time to wait before notifying the next button press (0 = disable spam detection)", FCVAR_NONE, true, 0.0, true, 60.0);
0 commit comments