Fix post-mapinit NPC exception (#40244)

Ensure `NPCBlackboard.Owner` is set during startup
This commit is contained in:
Leon Friedrich
2025-10-08 03:03:45 +13:00
committed by GitHub
parent 6b480673cd
commit 4b51b2953d
4 changed files with 8 additions and 1 deletions

View File

@@ -9,4 +9,5 @@ public abstract partial class NPCComponent : SharedNPCComponent
/// </summary>
[DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))]
public NPCBlackboard Blackboard = new();
// TODO FULL GAME SAVE Serialize this
}