diff --git a/Content.Client/CharacterAppearance/HumanoidAppearanceComponent.cs b/Content.Client/CharacterAppearance/HumanoidAppearanceComponent.cs index 0d55e206d9..0280b27dd6 100644 --- a/Content.Client/CharacterAppearance/HumanoidAppearanceComponent.cs +++ b/Content.Client/CharacterAppearance/HumanoidAppearanceComponent.cs @@ -46,7 +46,8 @@ namespace Content.Client.CharacterAppearance private void UpdateLooks() { - if (Appearance is null! || + // ReSharper disable once ConditionIsAlwaysTrueOrFalse + if (Appearance == null || !Owner.TryGetComponent(out SpriteComponent? sprite)) { return;