diff --git a/Content.Server/Cuffs/Components/CuffableComponent.cs b/Content.Server/Cuffs/Components/CuffableComponent.cs index e01c022428..a4a66753f5 100644 --- a/Content.Server/Cuffs/Components/CuffableComponent.cs +++ b/Content.Server/Cuffs/Components/CuffableComponent.cs @@ -207,7 +207,7 @@ namespace Content.Server.Cuffs.Components } // TODO: Make into an event and instead have a system check for owner. - if (!isOwner && !EntitySystem.Get().CanInteract(user)) + if (!EntitySystem.Get().CanInteract(user)) { user.PopupMessage(Loc.GetString("cuffable-component-cannot-interact-message")); return; diff --git a/Resources/Changelog/Parts/uncuff.yml b/Resources/Changelog/Parts/uncuff.yml new file mode 100644 index 0000000000..98cdbffd8b --- /dev/null +++ b/Resources/Changelog/Parts/uncuff.yml @@ -0,0 +1,4 @@ +author: Zumorica +changes: + - type: Fix # One of the following: Add, Remove, Tweak, Fix + message: Fix being able to uncuff yourself while dead or incapacitated.