Added missing ExtensionData dicts

Fixed issues with DataGen tool
This commit is contained in:
Chomp
2025-07-07 16:38:19 +01:00
parent 81a8fbcfb7
commit 5b42ea59b7
5 changed files with 19 additions and 7 deletions
@@ -145,8 +145,8 @@ public class JsonExtensionDataGeneratorLauncher
private static int FindEndClassIndex(string content, int currentIndex)
{
// we do +3 cause thats the length of what we are searching for
return _endRecordClassRegex.Match(content, currentIndex).Index + 3;
// we do +3 cause that's the length of what we are searching for
return _endRecordClassRegex.Match(content, currentIndex).Index;
}
private static int FindNextClassStartIndex(string content, int currentIndex)