diff --git a/game/operation/operation.py b/game/operation/operation.py index 5e873738..0e823f07 100644 --- a/game/operation/operation.py +++ b/game/operation/operation.py @@ -92,8 +92,10 @@ class Operation: # combined arms self.mission.groundControl.pilot_can_control_vehicles = self.ca_slots > 0 - self.mission.groundControl.blue_tactical_commander = self.ca_slots - self.mission.groundControl.red_tactical_commander = self.ca_slots + if self.game.player == "USA": + self.mission.groundControl.blue_tactical_commander = self.ca_slots + else: + self.mission.groundControl.red_tactical_commander = self.ca_slots # ground infrastructure self.groundobjectgen.generate()