diff --git a/Content.Server/GameObjects/EntitySystems/SolutionAreaEffectSystem.cs b/Content.Server/GameObjects/EntitySystems/SolutionAreaEffectSystem.cs index 0b47246f99..61aae955a7 100644 --- a/Content.Server/GameObjects/EntitySystems/SolutionAreaEffectSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/SolutionAreaEffectSystem.cs @@ -1,4 +1,5 @@ #nullable enable +using System.Linq; using Content.Server.GameObjects.Components.Chemistry; using JetBrains.Annotations; using Robust.Shared.GameObjects; @@ -10,7 +11,7 @@ namespace Content.Server.GameObjects.EntitySystems { public override void Update(float frameTime) { - foreach (var inception in ComponentManager.EntityQuery()) + foreach (var inception in ComponentManager.EntityQuery().ToArray()) { inception.InceptionUpdate(frameTime); }