From 4346e10eac83468e317343060ab4080af1bf8052 Mon Sep 17 00:00:00 2001 From: rtldg <55846624+rtldg@users.noreply.github.com> Date: Sun, 19 Sep 2021 13:52:47 +0000 Subject: [PATCH] small timelimit change that might not change anything --- addons/sourcemod/scripting/shavit-timelimit.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/sourcemod/scripting/shavit-timelimit.sp b/addons/sourcemod/scripting/shavit-timelimit.sp index 9360937b..96bcae45 100644 --- a/addons/sourcemod/scripting/shavit-timelimit.sp +++ b/addons/sourcemod/scripting/shavit-timelimit.sp @@ -296,7 +296,7 @@ public Action Timer_PrintToChat(Handle timer) Shavit_StopChatSound(); } - if (gCV_InstantMapChange.BoolValue && (0 <= timeleft <= 5)) + if (gCV_InstantMapChange.BoolValue && timeleft <= 5) { if (timeleft) { @@ -306,7 +306,7 @@ public Action Timer_PrintToChat(Handle timer) Call_Finish(); } - if (timeleft <= 3) + if (1 <= timeleft <= 3) { Shavit_StopChatSound(); Shavit_PrintToChatAll("%d..", timeleft);