From c477d966209217bc78ce0a3380dd0764adfca95a Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Mon, 25 Aug 2025 11:48:02 -0500 Subject: [PATCH] cScenario copy constructor copy sdf_names --- src/scenario/scenario.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scenario/scenario.cpp b/src/scenario/scenario.cpp index 495d93b68..9dfd39913 100644 --- a/src/scenario/scenario.cpp +++ b/src/scenario/scenario.cpp @@ -120,6 +120,7 @@ cScenario::cScenario(const cScenario& other) , intro_strs(other.intro_strs) , journal_strs(other.journal_strs) , spec_strs(other.spec_strs) + , sdf_names(other.sdf_names) , snd_names(other.snd_names) , adjust_diff(other.adjust_diff) , is_legacy(other.is_legacy)