diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index aa3381c6bf..c63dfb5901 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -57,7 +57,7 @@ public sealed class ToggleableClothingSystem : EntitySystem private void OnGetVerbs(EntityUid uid, ToggleableClothingComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || component.ClothingUid == null || component.Container == null) + if (!args.CanAccess || !args.CanInteract || args.Hands == null || component.ClothingUid == null || component.Container == null) return; var text = component.VerbText ?? (component.ActionEntity == null ? null : Name(component.ActionEntity.Value));