From 873f93cab1d94cdc43e653c4a640356a63932d44 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Thu, 2 Nov 2023 21:28:24 +0000 Subject: [PATCH] Fix: AI config window should not have an ini_key. (#11423) This was missed by the workflow script that enforces this constraint. --- src/ai/ai_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 1e468a9b5c..6c12b37d98 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -74,7 +74,7 @@ static const NWidgetPart _nested_ai_config_widgets[] = { /** Window definition for the configure AI window. */ static WindowDesc _ai_config_desc( - WDP_CENTER, "settings_script_config", 0, 0, + WDP_CENTER, nullptr, 0, 0, WC_GAME_OPTIONS, WC_NONE, 0, std::begin(_nested_ai_config_widgets), std::end(_nested_ai_config_widgets)