From f8df0e43edb9056edae254638ff9c52cdb98582b Mon Sep 17 00:00:00 2001 From: octareenroon91 Date: Mon, 1 Feb 2016 12:05:17 -0600 Subject: [PATCH] Improve player medbot :cl: rscadd: Player-controlled medibots can examine a patient to know what chems are in the patient's body. /:cl: --- code/modules/mob/living/simple_animal/bot/medbot.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/simple_animal/bot/medbot.dm b/code/modules/mob/living/simple_animal/bot/medbot.dm index d302e03ad7f..f01177c5517 100644 --- a/code/modules/mob/living/simple_animal/bot/medbot.dm +++ b/code/modules/mob/living/simple_animal/bot/medbot.dm @@ -385,6 +385,11 @@ else ..() +/mob/living/simple_animal/bot/medbot/examinate(atom/A as mob|obj|turf in view()) + ..() + if(!is_blind(src)) + chemscan(src, A) + /mob/living/simple_animal/bot/medbot/proc/medicate_patient(mob/living/carbon/C) if(!on) return