Fix clone not copying parameter rules.

This commit is contained in:
Ottermandias 2024-01-16 21:32:10 +01:00
parent d57d40bd59
commit c245b30eaa
2 changed files with 7 additions and 6 deletions

View file

@ -22,7 +22,7 @@ public sealed class Design : DesignBase, ISavable
internal Design(Design other)
: base(other)
{
Tags = other.Tags.ToArray();
Tags = [.. other.Tags];
Description = other.Description;
AssociatedMods = new SortedList<Mod, ModSettings>(other.AssociatedMods);
}