mirror of
https://github.com/nzp-team/quakec.git
synced 2025-02-16 17:10:55 +00:00
SERVER: Fixed co-op spawning too many zombies
This commit is contained in:
parent
0dd35ccef5
commit
723ccf852a
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ float() getZombieTotal = {
|
|||
if (plrcnt == 1)
|
||||
count += rint((0.5 * 6) * multiplier);
|
||||
else
|
||||
count += rint((plrcnt * 6) * multiplier);
|
||||
count += rint(((plrcnt - 1) * 6) * multiplier);
|
||||
|
||||
if (rounds < 2)
|
||||
count = floor(count * 0.25);
|
||||
|
|
Loading…
Reference in a new issue