From 7d9f5d5ea2f750c1e7c64567cbb591f848bc2676 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 aa12e8fc..2e10063d 100644 --- a/src/scenario/scenario.cpp +++ b/src/scenario/scenario.cpp @@ -119,6 +119,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)