From de413c89deddaf18c498a3362351a9c8c68ce4fb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 29 May 2017 06:32:10 -0500 Subject: [PATCH] Fixes mesons giving the wrong message when toggling off --- code/modules/clothing/glasses/glasses.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 063f3894c9..7cf4a33902 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -65,7 +65,7 @@ if(iscarbon(user)) //only carbons can wear glasses var/mob/living/carbon/C = user - if(!mesons_on) + if(mesons_on) to_chat(C, "Your Meson Scanners have reactivated.") else if(picked_excuse) to_chat(C, "Due to [picked_excuse], your Meson Scanners will not be able to display terrain layouts in this area.")