Team scores are now updated.

This commit is contained in:
Greyscale 2009-06-27 12:17:34 -07:00
parent ca820b6b53
commit 351e17cc91
1 changed files with 20 additions and 0 deletions

View File

@ -162,6 +162,26 @@ RoundEndOnRoundEnd(reason)
// Get outcome of the round.
new RoundEndOutcome:outcome = RoundEndReasonToOutcome(reason);
// Update team scores.
new teamscore;
switch(outcome)
{
// Zombies won the round.
case ZombiesWin:
{
// Increment T score.
teamscore = GetTeamScore(CS_TEAM_T);
SetTeamScore(CS_TEAM_T, ++teamscore);
}
// Humans won the round.
case HumansWin:
{
// Increment CT score.
teamscore = GetTeamScore(CS_TEAM_CT);
SetTeamScore(CS_TEAM_CT, ++teamscore);
}
}
// Display the overlay to all clients.
RoundEndOverlayStart(outcome);