From 13e372159acc99f0156a77a4c60b8ace1963596d Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 19 Nov 2020 21:19:12 -0800 Subject: [PATCH] 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. --- game/settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game/settings.py b/game/settings.py index ad496b65..ff73b63c 100644 --- a/game/settings.py +++ b/game/settings.py @@ -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"