mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
TotalTeamPlayerCount fix
Improper team count for lakrabbit which effects things like setnextmission votes
This commit is contained in:
parent
e99b013183
commit
47e1932279
|
|
@ -42,7 +42,7 @@ function GetTeamCounts(%game)
|
|||
if($countdownStarted && $MatchStarted)
|
||||
{
|
||||
//Variables
|
||||
$TotalTeamPlayerCount = $TeamRank[1, count] + $TeamRank[2, count];
|
||||
$TotalTeamPlayerCount = (Game.class $= "LakRabbitGame") ? $TeamRank[0, count] : ($TeamRank[1, count] + $TeamRank[2, count]);
|
||||
$AllPlayerCount = $HostGamePlayerCount;
|
||||
|
||||
//Observers
|
||||
|
|
|
|||
Loading…
Reference in a new issue