Change default settings to match UI defaults.

Doesn't affect the thing players see, but corrects the defaults when
using the command line mission generator.
This commit is contained in:
Dan Albert 2020-11-19 21:19:12 -08:00
parent 1ee0aafd9a
commit 13e372159a

View File

@ -6,10 +6,10 @@ from typing import Dict, Optional
class Settings:
# Generator settings
inverted: bool = False
do_not_generate_carrier: bool = False # TODO : implement
do_not_generate_lha: bool = False # TODO : implement
do_not_generate_player_navy: bool = True # TODO : implement
do_not_generate_enemy_navy: bool = True # TODO : implement
do_not_generate_carrier: bool = False
do_not_generate_lha: bool = False
do_not_generate_player_navy: bool = False
do_not_generate_enemy_navy: bool = False
# Difficulty settings
player_skill: str = "Good"