Added microlino and sprinter to safe vehicles
This commit is contained in:
parent
7654982105
commit
3fa0c21e2a
|
@ -191,10 +191,11 @@ def main():
|
|||
|
||||
if args.safe:
|
||||
blueprints = [x for x in blueprints if int(x.get_attribute('number_of_wheels')) == 4]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('isetta')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('microlino')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('carlacola')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('cybertruck')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('t2')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('sprinter')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('firetruck')]
|
||||
blueprints = [x for x in blueprints if not x.id.endswith('ambulance')]
|
||||
|
||||
|
|
Loading…
Reference in New Issue