back to only printing 3,2,1 instead of 5,4,3,2,1

This commit is contained in:
rtldg 2021-09-17 01:31:47 +00:00
parent 5cc0bd300d
commit 7a1d10685e

View File

@ -306,8 +306,11 @@ public Action Timer_PrintToChat(Handle timer)
Call_Finish();
}
Shavit_StopChatSound();
Shavit_PrintToChatAll("%d..", timeleft);
if (timeleft <= 3)
{
Shavit_StopChatSound();
Shavit_PrintToChatAll("%d..", timeleft);
}
if (timeleft == 1)
{