From 7d710f201933a21f79ffff9b2a84f399ed359c8e Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 20 Jun 2015 21:54:22 +0930 Subject: [PATCH] Fixes #8471 --- code/modules/clothing/suits/storage.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/suits/storage.dm b/code/modules/clothing/suits/storage.dm index 221a8dbd293..8b9c4613e6a 100644 --- a/code/modules/clothing/suits/storage.dm +++ b/code/modules/clothing/suits/storage.dm @@ -76,12 +76,12 @@ if(icon_state == icon_badge) icon_state = icon_nobadge - usr << "You unclip the badge from the vest." + usr << "You conceal \the [src]'s badge." else if(icon_state == icon_nobadge) icon_state = icon_badge - usr << "You clip the badge to the vest." + usr << "You reveal \the [src]'s badge." else - usr << "You can't find a badge for [src]." + usr << "\The [src] does not have a vest badge." return update_clothing_icon()