From a334c51b205d0b41b766180ba55673f6e25f3e7c Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Tue, 30 Jan 2018 19:25:17 +0200 Subject: [PATCH 1/2] Heartless humans now display as unsuitable for abductor experiments (#34951) --- code/game/gamemodes/miniantags/abduction/abduction_gear.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index e74f0c00d7..0bcb6f967e 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -558,7 +558,10 @@ Congratulations! You are now trained for invasive xenobiology research!"} if(temp) helptext = "Experimental gland detected!" else - helptext = "Subject suitable for experiments." + if (L.getorganslot(ORGAN_SLOT_HEART)) + helptext = "Subject suitable for experiments." + else + helptext = "Subject unsuitable for experiments." to_chat(user, "Probing result:[species]") to_chat(user, "[helptext]")