authored-breeding-recipes #3
Loading…
Reference in a new issue
No description provided.
Delete branch "authored-breeding-recipes"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
read_table assumed every property in the UDataTable object's own block was a single object index. That holds for a plain DataTable, whose only present property is RowStruct, but DT_PalMonsterParameter is a CompositeDataTable and leads with ParentTables -- an array. Reading that as a bare index put every later offset out by the length of the array, so the composite failed to decode at all ("consumed 20 bytes but export is 186033"). Look the class up from the export's class import and walk the real schema instead, skipping each present property by its own type. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>