From f14d1e3b7efb554934f988870e79f201fba6c3cd Mon Sep 17 00:00:00 2001 From: Josh Trzebiatowski Date: Wed, 18 Jan 2023 02:11:56 -0600 Subject: [PATCH] Track missing objects when selecting scenery groups (#19131) --- src/openrct2/EditorObjectSelectionSession.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2/EditorObjectSelectionSession.cpp b/src/openrct2/EditorObjectSelectionSession.cpp index 61322addee..3e0e2c96c3 100644 --- a/src/openrct2/EditorObjectSelectionSession.cpp +++ b/src/openrct2/EditorObjectSelectionSession.cpp @@ -582,6 +582,7 @@ ResultWithMessage WindowEditorObjectSelectionSelectObject( if (!selectionResult.Successful) { _gSceneryGroupPartialSelectError = selectionResult.Message; + LOG_ERROR("Could not find object: %s", std::string(sgEntry.GetName()).c_str()); } } }