From: bolantej <114430388+bolantej@users.noreply.github.com> Date: Fri, 23 May 2025 21:42:30 +0000 (-0700) Subject: Fixed Holoclown injector not breaking on drop (#37727) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=e5144c5df8521722bba34a12ebbf2df32f650204;p=space-station-14.git Fixed Holoclown injector not breaking on drop (#37727) --- diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index 9c48258628..3a0783c2ef 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -199,7 +199,12 @@ namespace Content.Server.Guardian return; } - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.InjectionDelay, new GuardianCreatorDoAfterEvent(), injector, target: target, used: injector){BreakOnMove = true}); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.InjectionDelay, new GuardianCreatorDoAfterEvent(), injector, target: target, used: injector) + { + BreakOnMove = true, + NeedHand = true, + BreakOnHandChange = true + }); } private void OnDoAfter(EntityUid uid, GuardianCreatorComponent component, DoAfterEvent args)