From 188660b16e5305c1ecf7bd13711c2d2b53eb9f8f Mon Sep 17 00:00:00 2001 From: Mars Date: Fri, 14 Dec 2018 23:01:22 +0100 Subject: [PATCH] Fixes radial implants --- code/_onclick/hud/radial.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm index d0c0c29fe81..d07a1dbff7c 100644 --- a/code/_onclick/hud/radial.dm +++ b/code/_onclick/hud/radial.dm @@ -76,7 +76,10 @@ GLOBAL_LIST_EMPTY(radial_menus) var/atom/movable/AM = anchor if(!istype(AM)) return - if((AM in user.client.screen) || !AM.screen_loc) + var/mob/living/carbon/H + if(ishuman(user)) + H = user + if((AM in user.client.screen) || !AM.screen_loc || (H && (AM in H.internal_organs))) if(hudfix_method) anchor = user else