From 388b2612b09356d24982ac9340e99765df4e5755 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 31 May 2015 01:38:17 +0930 Subject: [PATCH] Fixes #9488 --- code/game/objects/items/devices/scanners.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index fe2c0a61102..af139f89148 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -72,9 +72,9 @@ REAGENT SCANNER throwforce = 3 w_class = 2.0 throw_speed = 5 - throw_range = 10 + throw_range = 10 matter = list(DEFAULT_WALL_MATERIAL = 200) - origin_tech = list(TECH_MAGNET = 1, TECH_BIO = 1) + origin_tech = list(TECH_MAGNET = 1, TECH_BIO = 1) var/mode = 1; @@ -93,7 +93,7 @@ REAGENT SCANNER return user.visible_message(" [user] has analyzed [M]'s vitals."," You have analyzed [M]'s vitals.") - if (!istype(M, /mob/living/carbon) || ishuman(M)) + if (!istype(M,/mob/living/carbon/human) || M.isSynthetic()) //these sensors are designed for organic life user.show_message("\blue Analyzing Results for ERROR:\n\t Overall Status: ERROR") user.show_message("\t Key: Suffocation/Toxin/Burns/Brute", 1)