Skip to content

Commit

Permalink
Updated default next formID values to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Aug 27, 2024
1 parent 93ea598 commit 89627ad
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Fallout4/Records/Fallout4ModHeader.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<Fields>
<Float name="Version" default="1f" />
<UInt32 name="NumRecords" />
<UInt32 name="NextFormID" default="0x1" />
<UInt32 name="NextFormID" default="0x0" />
</Fields>
</Object>
<Object name="TransientType" recordType="TNAM" objType="Subrecord">
Expand Down
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Fallout4/Records/ModStats_Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ModStats()
public UInt32 NumRecords { get; set; } = default(UInt32);
#endregion
#region NextFormID
public static readonly UInt32 NextFormIDDefault = 0x1;
public static readonly UInt32 NextFormIDDefault = 0x0;
public UInt32 NextFormID { get; set; } = NextFormIDDefault;
#endregion

Expand Down
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Skyrim/Records/ModStats_Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ModStats()
public UInt32 NumRecords { get; set; } = default(UInt32);
#endregion
#region NextFormID
public static readonly UInt32 NextFormIDDefault = 0x1;
public static readonly UInt32 NextFormIDDefault = 0x0;
public UInt32 NextFormID { get; set; } = NextFormIDDefault;
#endregion

Expand Down
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Skyrim/Records/SkyrimModHeader.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Fields>
<Float name="Version" default="1.71f" />
<UInt32 name="NumRecords" />
<UInt32 name="NextFormID" default="0x1" />
<UInt32 name="NextFormID" default="0x0" />
</Fields>
</Object>
</Loqui>
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Starfield/Records/ModStats_Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ModStats()
public UInt32 NumRecords { get; set; } = default(UInt32);
#endregion
#region NextFormID
public static readonly UInt32 NextFormIDDefault = 0x1;
public static readonly UInt32 NextFormIDDefault = 0x0;
public UInt32 NextFormID { get; set; } = NextFormIDDefault;
#endregion

Expand Down
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.Starfield/Records/StarfieldModHeader.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<Fields>
<Float name="Version" default="0.96f" />
<UInt32 name="NumRecords" />
<UInt32 name="NextFormID" default="0x1" />
<UInt32 name="NextFormID" default="0x0" />
</Fields>
</Object>
<Object name="TransientType" recordType="TNAM" objType="Subrecord">
Expand Down

0 comments on commit 89627ad

Please sign in to comment.