Convert subitems for Configuration and DipSwitch

This commit is contained in:
Matt Nadareski
2026-04-04 00:08:56 -04:00
parent a8c060ff26
commit f7ac1073b0
17 changed files with 215 additions and 220 deletions

View File

@@ -99,7 +99,7 @@ namespace SabreTools.Serialization.CrossModel
};
if (item.DipValue is not null && item.DipValue.Length > 0)
dipSwitch[Data.Models.Metadata.DipSwitch.DipValueKey] = Array.ConvertAll(item.DipValue, ConvertToInternalModel);
dipSwitch.DipValue = Array.ConvertAll(item.DipValue, ConvertToInternalModel);
return dipSwitch;
}