Revert the other arch changes (#21871)

This commit is contained in:
metalgearsloth
2023-11-24 11:19:46 +11:00
committed by GitHub
parent 15052bf7c2
commit d4bed09cdc
32 changed files with 108 additions and 309 deletions

View File

@@ -204,7 +204,7 @@ public sealed partial class ArtifactSystem
var temp = (object) comp;
_serialization.CopyTo(entry.Component, ref temp);
EntityManager.AddComponent(uid, (Component) temp!);
EntityManager.AddComponent(uid, (Component) temp!, true);
}
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!);
EntityManager.AddComponent(uid, (Component) temp!, true);
continue;
}