Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/shavit-checkpoints.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1909,8 +1909,8 @@ bool LoadCheckpointCache(int client, cp_cache_t cpcache, int index, bool force =
{
cpcache.aSnapshot.bPracticeMode = true;

// Do this here to only trigger a practice mode alert if the client was outside the start zone (prevent alert spam in some cases)
if (!Shavit_InsideZone(client, Zone_Start, -1))
// Do this here to only trigger a practice mode alert if the client was <=1s into a run (prevent alert spam in some cases)
if (cpcache.aSnapshot.iFullTicks > 100)
{
Shavit_SetPracticeMode(client, true, true);
}
Expand Down