Skip to content

Commit

Permalink
TES5: Fix SNDR/ANAM layout
Browse files Browse the repository at this point in the history
The correct layout is not:
  ANAM
  str
  str
  str
  ...

but instead:
  ANAM
  str
  ANAM
  str
  ANAM
  str
  ...

Was breaking both patching and merging of SNDR records.
  • Loading branch information
Infernio authored and Utumno committed Oct 18, 2019
1 parent b962d8d commit 47ca8d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Mopy/bash/game/skyrim/records.py
Expand Up @@ -6129,7 +6129,9 @@ class MreSndr(MelRecord):
MelBase('CNAM','cnam_p'),
MelFid('GNAM','category',),
MelFid('SNAM','altSoundFor',),
MelStrings('ANAM','sounds',),
MelGroups('sounds',
MelString('ANAM', 'sound_file_name',),
),
MelFid('ONAM','outputModel',),
MelLString('FNAM','string'),
MelConditions(),
Expand Down

0 comments on commit 47ca8d5

Please sign in to comment.