diff --git a/encompass-cs/ComponentUpdateManager.cs b/encompass-cs/ComponentUpdateManager.cs index 26b08ed..dc6c30d 100644 --- a/encompass-cs/ComponentUpdateManager.cs +++ b/encompass-cs/ComponentUpdateManager.cs @@ -30,7 +30,6 @@ namespace Encompass { existingComponentStore.ClearAll(); immediateComponentStore.ClearAll(); - UpToDateComponentStore.ClearAll(); } internal void SetStartingComponentStore(ComponentStore componentStore) @@ -41,7 +40,6 @@ namespace Encompass internal void AddExistingComponent(Entity entity, TComponent component) where TComponent : struct, IComponent { existingComponentStore.Set(entity.ID, component); - UpToDateComponentStore.Set(entity.ID, component); } internal bool AddImmediateComponent(Entity entity, TComponent component, int priority) where TComponent : struct, IComponent