diff --git a/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs index 323884ab36..44d72b248b 100644 --- a/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs @@ -45,7 +45,8 @@ public sealed class HideLayerClothingSystem : EntitySystem if (!Resolve(clothing.Owner, ref clothing.Comp1, ref clothing.Comp2)) return; - if (!Resolve(user.Owner, ref user.Comp)) + // logMissing: false, as this clothing might be getting equipped by a non-human. + if (!Resolve(user.Owner, ref user.Comp, false)) return; hideLayers &= IsEnabled(clothing!);