This commit is contained in:
spencer-ki 2022-02-04 20:14:42 -08:00
parent 315b226014
commit 7d549c586e
4 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -146,7 +146,7 @@ class RotorOpsMission:
for zone_name in red_zones:
self.m.vehicle_group(
self.m.country('Russia'),
zone_name + " Protection SAM",
zone_name + " Protection SAM NOAI",
random.choice(RotorOpsUnits.e_zone_sams),
red_zones[zone_name].position,
heading=random.randint(0, 359),
@ -160,11 +160,11 @@ class RotorOpsMission:
self.addGroundGroups(blue_zones[zone_name], self.m.country('USA'), blue_forces,
options["blue_quantity"])
if options["zone_protect_sams"] and options["defending"]:
if options["zone_protect_sams"]:
for zone_name in blue_zones:
self.m.vehicle_group(
self.m.country('USA'),
zone_name + " Protection SAM",
zone_name + " Protection SAM NOAI",
random.choice(RotorOpsUnits.e_zone_sams),
blue_zones[zone_name].position,
heading=random.randint(0, 359),

Binary file not shown.

View File

@ -1,6 +1,6 @@
RotorOps = {}
RotorOps.version = "1.2.3"
local debug = true
RotorOps.version = "1.2.4"
local debug = false
---[[ROTOROPS OPTIONS]]---