From: Jezithyr Date: Sun, 11 Feb 2024 00:37:32 +0000 (-0800) Subject: Gibbing contents hotfix (#25114) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=8e59b4f50546c9ba53981ab4b22bcd1595d775d6;p=space-station-14.git Gibbing contents hotfix (#25114) Fixing gibbing contents not respecting Include/Exclude container lists. This is currently unused --- diff --git a/Content.Shared/Gibbing/Systems/GibbingSystem.cs b/Content.Shared/Gibbing/Systems/GibbingSystem.cs index 5d00b2a491..2f5a9cb61c 100644 --- a/Content.Shared/Gibbing/Systems/GibbingSystem.cs +++ b/Content.Shared/Gibbing/Systems/GibbingSystem.cs @@ -151,7 +151,7 @@ public sealed class GibbingSystem : EntitySystem } case GibContentsOption.Gib: { - foreach (var container in _containerSystem.GetAllContainers(gibbable)) + foreach (var container in validContainers) { foreach (var ent in container.ContainedEntities) {