diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs index 45891b2aac6150..4a4da176f6d5e5 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs @@ -114,14 +114,10 @@ private void OnBuckleInteractHand(Entity ent, ref InteractHandE if (args.Handled) return; - var canUnbuckle = false; - if (ent.Comp.BuckledTo != null) args.Handled = TryUnbuckle(ent!, args.User, popup: true); // TODO BUCKLE add out bool for whether a pop-up was generated or not. - if (canUnbuckle) - args.Handled = true; } private void AddStrapVerbs(EntityUid uid, StrapComponent component, GetVerbsEvent args)