diff --git a/CHANGELIST.md b/CHANGELIST.md index 962ffd72..83f505a8 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -24,6 +24,7 @@ - Fix incorrect SetParameters - Fix a couple redumper things - Update AppVeyor version +- Output security sectors to info ### 2.4 (2022-10-26) - Update to DIC 20211001 diff --git a/MPF.Library/InfoTool.cs b/MPF.Library/InfoTool.cs index ec276058..c84e1b22 100644 --- a/MPF.Library/InfoTool.cs +++ b/MPF.Library/InfoTool.cs @@ -780,7 +780,7 @@ namespace MPF.Library // AddIfExists(output, Template.RegionalParentField, info.RegionalParent.ToString()); // Extras section - if (info.Extras.PVD != null || info.Extras.PIC != null || info.Extras.BCA != null) + if (info.Extras.PVD != null || info.Extras.PIC != null || info.Extras.BCA != null || info.Extras.SecuritySectorRanges != null) { output.Add(""); output.Add("Extras:"); AddIfExists(output, Template.PVDField, info.Extras.PVD?.Trim(), 1);