Revert changeset: 9d97c210c634

This commit is contained in:
Richard Helgeby 2013-11-11 01:03:23 +01:00
parent 1e7b0e6267
commit 447240fb8d
1 changed files with 6 additions and 6 deletions

View File

@ -121,12 +121,6 @@ RoundEndOnRoundStart()
// Reset timer handle.
tRoundEnd = INVALID_HANDLE;
}
// Balance teams if enabled.
if (GetConVarBool(g_hCvarsList[CVAR_ROUNDEND_BALANCE_TEAMS]))
{
RoundEndBalanceTeams();
}
}
/**
@ -198,6 +192,12 @@ RoundEndOnRoundEnd(reason)
// Display the overlay to all clients.
RoundEndOverlayStart(outcome);
// Balance teams if enabled.
if (GetConVarBool(g_hCvarsList[CVAR_ROUNDEND_BALANCE_TEAMS]))
{
RoundEndBalanceTeams();
}
}
/**