mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 19:43:13 +01:00
The stethoscope message, for the user, is now inside an examine block (#18794)
* sadf * sdfa
This commit is contained in:
@@ -270,8 +270,8 @@
|
||||
if(user.a_intent == I_HELP)
|
||||
var/obj/item/organ/organ = M.get_organ(user.zone_sel.selecting)
|
||||
if(organ)
|
||||
user.visible_message(SPAN_NOTICE("[user] places [src] against [M]'s [organ.name] and listens attentively."),
|
||||
"You place [src] against [M]'s [organ.name]. You hear <b>[english_list(organ.listen())]</b>.")
|
||||
user.visible_message(SPAN_NOTICE("[user] places \the [src] against [M]'s [organ.name] and listens attentively."),
|
||||
EXAMINE_BLOCK("You place \the [src] against [M]'s [organ.name]. You hear <b>[english_list(organ.listen())]</b>."))
|
||||
return
|
||||
return ..(M,user)
|
||||
|
||||
|
||||
@@ -18,15 +18,15 @@
|
||||
var/mob/living/carbon/human/H = user
|
||||
if(H.has_stethoscope_active())
|
||||
var/obj/item/organ/organ = src.get_organ(user.zone_sel.selecting)
|
||||
if(organ)
|
||||
if(organ && do_mob(user, src, 1.5 SECONDS))
|
||||
user.visible_message("<b>[user]</b> checks [src] with a stethoscope.", "You check [src] with the stethoscope on your person.")
|
||||
to_chat(user, SPAN_NOTICE("You place the stethoscope against [src]'s [organ.name]. You hear <b>[english_list(organ.listen())]</b>."))
|
||||
to_chat(user, EXAMINE_BLOCK("You place the stethoscope against [src]'s [organ.name]. You hear <b>[english_list(organ.listen())]</b>."))
|
||||
else
|
||||
to_chat(user, SPAN_WARNING("[src] is missing that limb!"))
|
||||
|
||||
else if(src.stat && !(src.species.flags & NO_BLOOD))
|
||||
user.visible_message("<b>[user]</b> checks [src]'s pulse.", "You check [src]'s pulse.")
|
||||
if(do_mob(user, src, 15))
|
||||
if(do_mob(user, src, 2 SECONDS))
|
||||
if(pulse() == PULSE_NONE || (status_flags & FAKEDEATH))
|
||||
to_chat(user, "<span class='deadsay'>[get_pronoun("He")] [get_pronoun("has")] no pulse.</span>")
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user