From 03e006eb05403a0e4ba3ffae7c0791534c488008 Mon Sep 17 00:00:00 2001 From: Joan Lung Date: Sat, 27 May 2017 22:10:02 -0400 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 687ba518587..9b9bd25ff44 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.")