diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 9b3c22855b..e843422d4f 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,5 +1,6 @@ 0.3.1+ (in development) ------------------------------------------------------------------------ +- Feature: [#13000] objective_options command for console 0.3.1 (2020-09-27) ------------------------------------------------------------------------ diff --git a/src/openrct2/interface/InteractiveConsole.cpp b/src/openrct2/interface/InteractiveConsole.cpp index 064b1eb5b4..671b513657 100644 --- a/src/openrct2/interface/InteractiveConsole.cpp +++ b/src/openrct2/interface/InteractiveConsole.cpp @@ -1160,6 +1160,10 @@ static int32_t cc_open(InteractiveConsole& console, const arguments_t& argv) { context_open_window(WC_EDITOR_SCENARIO_OPTIONS); } + else if (argv[0] == "objective_options" && invalidArguments(&invalidTitle, !title)) + { + context_open_window(WC_EDTIOR_OBJECTIVE_OPTIONS); + } else if (argv[0] == "options") { context_open_window(WC_OPTIONS); @@ -1736,6 +1740,7 @@ static constexpr const utf8* console_window_table[] = { "object_selection", "inventions_list", "scenario_options", + "objective_options", "options", "themes", "title_sequences"