mirror of
https://github.com/spencershepard/RotorOps.git
synced 2025-11-10 15:45:30 +00:00
v1.5.3 (#59)
* Update MissionGenerator.py * remove case-sensitivity for tag names * Update RotorOpsMission.py * 1.5.3
This commit is contained in:
@@ -29,10 +29,10 @@ class Scenario:
|
||||
if 'name' in config:
|
||||
self.name = config["name"]
|
||||
if 'map' in config:
|
||||
self.map_name = config["map"]
|
||||
self.map_name = config["map"].lower()
|
||||
if 'tags' in config:
|
||||
for tag in config['tags']:
|
||||
self.tags.append(tag)
|
||||
self.tags.append(tag.lower())
|
||||
if 'author' in config:
|
||||
self.author = config["author"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user