Moved team balancing to round start in stead of round end. Fixes issue with maps or plugins inspecting player teams in round end event; being unable to detect which players that are zombies when the round has ended. Thanks to "Neuro Toxin".

Possible side effect: After round end, but before restart, zombies may not be able to pick up weapons to use in the next round. This might be ok, it's just dumb zombies. But it should be possible to fix this in the weapon restrict module if there's a need for it.
This commit is contained in:
Richard Helgeby 2013-10-31 22:36:04 +01:00
parent d286d29652
commit 1e7b0e6267
1 changed files with 6 additions and 6 deletions

View File

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