We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703f950 commit f492948Copy full SHA for f492948
SchemaValidator/Validation/Validators/ArrayTypingValidator.cs
@@ -15,12 +15,10 @@ public ArrayTypingValidator(IGameFileAccess gameData) : base(gameData) { }
15
16
public override ValidationResults Validate(ExcelHeaderFile exh, Sheet sheet)
17
{
18
- if (sheet.Name == "SpecialShop")
19
- Debugger.Break();
20
var results = new ValidationResults();
21
var fields = SchemaUtil.Flatten(exh, sheet, true);
22
23
- var grouped = fields.GroupBy(f => f.Field.Name);
+ var grouped = fields.GroupBy(f => f.Field.Path);
24
foreach (var group in grouped)
25
26
ExcelColumnDataType? baseType = null;
0 commit comments