From 4053356e13230f9da7cb3420bc88d34ecb1d87ac Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sun, 6 Mar 2022 02:02:25 -0800 Subject: [PATCH] Default to the React map the default. https://github.com/dcs-liberation/dcs_liberation/issues/2039 --- qt_ui/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qt_ui/main.py b/qt_ui/main.py index 3d78bea3..7f3fbefd 100644 --- a/qt_ui/main.py +++ b/qt_ui/main.py @@ -185,13 +185,14 @@ def parse_args() -> argparse.Namespace: parser.add_argument( "--new-map", action="store_true", - help="Use the React based map. Not yet fully functional.", + default=True, + help="Use the React based map. This is the default.", ) parser.add_argument( "--old-map", dest="new_map", action="store_false", - help="Use the legacy map. This is the default.", + help="Use the legacy map. This will be removed before 6.0.0 is released.", ) new_game = subparsers.add_parser("new-game")