diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 75fff61dde..83a55d9a8e 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -26,6 +26,9 @@ public sealed class SharpSystem : EntitySystem private void OnAfterInteract(EntityUid uid, SharpComponent component, AfterInteractEvent args) { + if (!args.CanReach) + return; + if (args.Target is null || !TryComp(args.Target, out var butcher)) return;