From a17e1671f0916528e2f85c46d48a83f2459d758e Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Fri, 23 Dec 2022 19:26:45 +1300 Subject: [PATCH] Fix MiniYaml source locations being lost when merging. --- OpenRA.Game/MiniYaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/MiniYaml.cs b/OpenRA.Game/MiniYaml.cs index 4a2d1bfc25..46f8e4c0f0 100644 --- a/OpenRA.Game/MiniYaml.cs +++ b/OpenRA.Game/MiniYaml.cs @@ -83,7 +83,7 @@ namespace OpenRA public MiniYamlNode Clone() { - return new MiniYamlNode(Key, Value.Clone()); + return new MiniYamlNode(Key, Value.Clone(), Comment, Location); } }