From: Mr0maks Date: Fri, 17 Mar 2023 02:13:04 +0000 (+0500) Subject: Fix handcuffs in fight mode (#14716) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=eb6d2c5b974b4199e348f89c7387a29d3201eb93;p=space-station-14.git Fix handcuffs in fight mode (#14716) --- 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; }