Content arch (#20107)
Co-authored-by: DrSmugleaf <drsmugleaf@gmail.com>
This commit is contained in:
@@ -204,7 +204,7 @@ public sealed partial class ArtifactSystem
|
||||
var temp = (object) comp;
|
||||
_serialization.CopyTo(entry.Component, ref temp);
|
||||
|
||||
EntityManager.AddComponent(uid, (Component) temp!, true);
|
||||
EntityManager.AddComponent(uid, (Component) temp!);
|
||||
}
|
||||
|
||||
node.Discovered = true;
|
||||
@@ -238,7 +238,7 @@ public sealed partial class ArtifactSystem
|
||||
comp.Owner = uid;
|
||||
var temp = (object) comp;
|
||||
_serialization.CopyTo(entry, ref temp);
|
||||
EntityManager.AddComponent(uid, (Component) temp!, true);
|
||||
EntityManager.AddComponent(uid, (Component) temp!);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user