From c699567c7315df7bd987092cfa2061f5881348a4 Mon Sep 17 00:00:00 2001 From: Khopa Date: Sat, 22 Sep 2018 13:33:31 +0200 Subject: [PATCH] Only generate Combined Arms "Tactical Commander" slots for player side. --- game/operation/operation.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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()