From eb6d2c5b974b4199e348f89c7387a29d3201eb93 Mon Sep 17 00:00:00 2001 From: Mr0maks Date: Fri, 17 Mar 2023 07:13:04 +0500 Subject: [PATCH] Fix handcuffs in fight mode (#14716) --- Content.Shared/Cuffs/SharedCuffableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 822f23f9d6..da67a118e3 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -268,7 +268,7 @@ namespace Content.Shared.Cuffs if (!args.HitEntities.Any()) return; - TryCuffing(uid, args.User, args.HitEntities.First(), component); + TryCuffing(args.User, args.HitEntities.First(), uid, component); args.Handled = true; } -- 2.52.0