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)