small timelimit change that might not change anything

This commit is contained in:
rtldg 2021-09-19 13:52:47 +00:00
parent f4d8e55789
commit 4346e10eac

View File

@ -296,7 +296,7 @@ public Action Timer_PrintToChat(Handle timer)
Shavit_StopChatSound(); Shavit_StopChatSound();
} }
if (gCV_InstantMapChange.BoolValue && (0 <= timeleft <= 5)) if (gCV_InstantMapChange.BoolValue && timeleft <= 5)
{ {
if (timeleft) if (timeleft)
{ {
@ -306,7 +306,7 @@ public Action Timer_PrintToChat(Handle timer)
Call_Finish(); Call_Finish();
} }
if (timeleft <= 3) if (1 <= timeleft <= 3)
{ {
Shavit_StopChatSound(); Shavit_StopChatSound();
Shavit_PrintToChatAll("%d..", timeleft); Shavit_PrintToChatAll("%d..", timeleft);