diff --git a/code/game/machinery/machine_frame.dm b/code/game/machinery/machine_frame.dm index 9aa52d3243b..87428392a0b 100644 --- a/code/game/machinery/machine_frame.dm +++ b/code/game/machinery/machine_frame.dm @@ -90,6 +90,10 @@ icon_state = "box_0" /obj/structure/machine_frame/item_interaction(mob/living/user, obj/item/P, list/modifiers) + // Allow the borg gripper to pass the attack to the item it's holding. + if(istype(P, /obj/item/gripper)) + return ..() + switch(state) if(MACHINE_FRAME_EMPTY) if(istype(P, /obj/item/stack/cable_coil))