From 3471ee8404b98a1edf1ffeb9b35f17ed0bae83ec Mon Sep 17 00:00:00 2001 From: Giacomand Date: Wed, 10 Jul 2013 07:09:05 +0100 Subject: [PATCH] Updated the message you get after trying to analyze the floor. --- code/game/objects/items/devices/scanners.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index a3c88d2038d..d1bab674f31 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -78,8 +78,8 @@ MASS SPECTROMETER /obj/item/device/healthanalyzer/attack(mob/living/M as mob, mob/living/user as mob) // Clumsiness/brain damage check - if (CLUMSY in user.mutations || user.getBrainLoss() >= 60 && prob(50)) - user << text("You try to analyze the floor's vitals!") + if ((CLUMSY in user.mutations || user.getBrainLoss() >= 60) && prob(50)) + user << text("You stupidly try to analyze the floor's vitals!") user.visible_message(text("[user] has analyzed the floor's vitals!")) user.show_message(text("Analyzing Results for The floor:\n\t Overall Status: Healthy"), 1) user.show_message(text("\t Damage Specifics: 0-0-0-0"), 1)