diff --git a/raw/maps/mp/teams/_teams-src.gsc b/raw/maps/mp/teams/_teams-src.gsc index 11a24a8..e1d4e64 100644 --- a/raw/maps/mp/teams/_teams-src.gsc +++ b/raw/maps/mp/teams/_teams-src.gsc @@ -103,7 +103,9 @@ trackplayedtime() self.timePlayed["alive"] = 0; - if ( !isdefined( self.timePlayed["total"] ) || !( ( level.gameType == "twar" ) && ( 0 < game["roundsplayed"] ) && ( 0 < self.timeplayed["total"] ) ) ) + if ( !isdefined( self.timePlayed["total"] ) ) + self.timePlayed["total"] = 0; + else if ( ( level.gameType == "twar" ) && ( 0 < game["roundsplayed"] ) && ( 0 < self.timeplayed["total"] ) ) self.timePlayed["total"] = 0; while ( level.inprematchperiod ) @@ -235,8 +237,6 @@ updateteambalancedvar() updateTeamBalance() { - level.teamLimit = level.maxclients / 2; - level thread updateTeamBalanceDvar(); wait .15; diff --git a/raw/maps/mp/teams/_teams.gsc b/raw/maps/mp/teams/_teams.gsc index b64413b..ad73a00 100644 Binary files a/raw/maps/mp/teams/_teams.gsc and b/raw/maps/mp/teams/_teams.gsc differ