Small cleanup in infect countdown timers.

This commit is contained in:
Richard Helgeby 2012-05-20 21:08:07 +02:00
parent 235407facb
commit 1a4951ad0c
1 changed files with 4 additions and 10 deletions

View File

@ -397,15 +397,9 @@ InfectOnRoundFreezeEnd()
*/
InfectOnRoundEnd()
{
// If infect timer is running, then kill it.
if (tInfect != INVALID_HANDLE)
{
// Kill timer.
KillTimer(tInfect);
// Reset timer handle.
tInfect = INVALID_HANDLE;
}
// Stop infect timers if running.
ZREndTimer(tInfect);
ZREndTimer(tInfectCountdown);
// x = client index.
for (new x = 1; x <= MaxClients; x++)
@ -590,7 +584,7 @@ public Action:InfectCountdown(Handle:timer, Handle:hCountdownData)
if (counter >= length)
{
// Kill timer.
ZREndTimer(tInfectCountdown, false);
ZREndTimer(tInfectCountdown);
CloseHandle(hCountdownData);
return Plugin_Stop;
}