diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index 792c9ecec7..bd3730ff93 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -357,12 +357,12 @@ public sealed class EntityStorageSystem : EntitySystem } if (TryComp(uid, out var surface)) - _placeableSurface.SetPlaceable(uid, true, surface); + _placeableSurface.SetPlaceable(uid, component.Open, surface); if (TryComp(uid, out var appearance)) { appearance.SetData(StorageVisuals.Open, component.Open); - appearance.SetData(StorageVisuals.HasContents, component.Contents.ContainedEntities.Count() > 0); + appearance.SetData(StorageVisuals.HasContents, component.Contents.ContainedEntities.Any()); } } }