From ab8c120ff2ae2bf4f90c448779e54a98ff4eb12c Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Sun, 18 Oct 2020 02:48:42 +0200 Subject: [PATCH] Makes hiding/showing wings visible in chat. --- code/modules/mob/living/carbon/human/emote_vr.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 64a05ee2757..6a3e65b880e 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -254,3 +254,10 @@ set desc = "Hide your wings, or show them if you already hid them." wings_hidden = !wings_hidden update_wing_showing() + var/message = "" + if(!wings_hidden) + message = "reveals their wings!" + else + message = "hides their wings." + visible_message("[src] [message]") +