From 8e0f9abca032a3e62624d4aed60ef3875f92b329 Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Thu, 11 Apr 2024 06:21:19 +0300 Subject: [PATCH] Return Examine Descriptors (#204) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Что этот PR делает Возвращает дескрипторы (меньше/больше вас и тд) ## Changelog :cl: fix: Дескрипторы сравнения при Examine вернулись /:cl: --- code/modules/mob/living/carbon/human/examine.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index e7fb07714b314..5eab1f8c5548f 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -334,6 +334,10 @@ pose = addtext(pose,".") //Makes sure all emotes end with a period. . += SPAN_NOTICE("[p_They()] [pose]") + var/descriptors = show_descriptors_to(user) + if(descriptors) + . += SPAN_NOTICE("[jointext(descriptors, "
")]") + SEND_SIGNAL(src, COMSIG_ATOM_EXAMINE, user, .) //Helper procedure. Called by /mob/living/carbon/human/examine() and /mob/living/carbon/human/Topic() to determine HUD access to security and medical records.