added cvar to determine winning team when time runs out

This commit is contained in:
neon 2018-07-22 16:14:39 +02:00
parent a095fc67e7
commit 908766a551
1 changed files with 5 additions and 2 deletions

View File

@ -326,8 +326,11 @@ public Action:RoundEndTimer(Handle:timer)
return;
}
// Terminate the round with humans as the winner.
RoundEndTerminateRound(ROUNDEND_DELAY, HumansWin);
new bool:zombies_win = GetConVarBool(g_hCvarsList[CVAR_ROUNDEND_ZOMBIES_WIN]);
if (zombies_win)
RoundEndTerminateRound(ROUNDEND_DELAY, ZombiesWin);
else
RoundEndTerminateRound(ROUNDEND_DELAY, HumansWin);
}
/**