Skip to content

Commit

Permalink
Starfield Race ctor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Oct 11, 2024
1 parent 4108780 commit 4575d08
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Mutagen.Bethesda.Starfield/Records/Major Records/Race.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ public enum Flag : ulong
LowPriorityPushable = 0x0020_0000_0000_0000,
CannotUsePlayableItems = 0x0040_0000_0000_0000
}

partial void CustomCtor()
{
for (int key = 0; key < 64; ++key)
{
BipedObjects[(BipedObject)key] = new();
}
}
}

partial class RaceBinaryCreateTranslation
Expand Down

0 comments on commit 4575d08

Please sign in to comment.