mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 06:31:44 +00:00
Server: Bleedout Timer parity
This commit is contained in:
parent
9e8293b2eb
commit
68a8fcb4ac
1 changed files with 2 additions and 2 deletions
|
@ -170,11 +170,11 @@ void() EndGameSetup =
|
|||
}
|
||||
|
||||
// rec_downed is used as a recursive loop where we consistently check to see if ALL players are downed
|
||||
// if they aren't dead, we keep looping until our OWN death (45 seconds, so 450 loops)
|
||||
// if they aren't dead, we keep looping until our OWN death (30 seconds, so 300 loops)
|
||||
void() rec_downed =
|
||||
{
|
||||
self.downedloop++;
|
||||
if (self.downedloop == 450) {
|
||||
if (self.downedloop == 300) {
|
||||
startspectate();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue