From f4441c48368d30bb70bae0f2b2e4e4644e46cc2a Mon Sep 17 00:00:00 2001 From: CitrusGender <31262308+CitrusGender@users.noreply.github.com> Date: Wed, 30 May 2018 21:33:57 -0400 Subject: [PATCH 1/2] Fix: Cyborgs can now use defibs with other modules equipped (#38158) * Adds a check to see if the user is a cyborg before referring to the offhand. * Update twohanded.dm * actually this is a bit more modular * Update twohanded.dm * Update twohanded.dm --- code/modules/mob/living/silicon/silicon.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 100e85f085..b149701591 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -403,3 +403,6 @@ /mob/living/silicon/is_literate() return 1 + +/mob/living/silicon/get_inactive_held_item() + return FALSE \ No newline at end of file