From cb501e395dfd37c606b23ec61d05233e22868068 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Sat, 13 Oct 2018 09:28:27 +0200 Subject: [PATCH] Please review --- code/modules/clothing/under/accessories/accessory.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 9de89fb71e0..e8c613f9437 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -155,14 +155,14 @@ return 1 /obj/item/clothing/accessory/stethoscope/attack(mob/living/carbon/human/M, mob/living/user) - if(ishuman(M) && isliving(user)) + if(isliving(user)) //Vorestation edit start var/message_holder //Holds pervy message var/beat_size = "" //Small prey = quiet for(var/belly in M.vore_organs) //Pervy edit. var/obj/belly/B = belly for(var/mob/living/carbon/human/H in B) - if(H.size_multiplier < 0.49) + if(H.size_multiplier < 0.5) beat_size = pick("quiet ", "hushed " ,"low " ,"hushed ") if(H.stat == DEAD) //dead message_holder = pick("Your listening is troubled by the occasional groaning of their body.", "There is some moderate burbling in the background.", "They seem to have a healthy metabolism as well.") @@ -196,7 +196,7 @@ if(heart.is_bruised() || M.getOxyLoss() > 50) sound = "[pick("odd noises in","weak")] heartbeat" else - sound = "a healthy heartbeat" //Vorestation + sound = "a healthy heartbeat" //Vorestation edit var/obj/item/organ/internal/heart/L = M.internal_organs_by_name[O_LUNGS] if(!L || M.losebreath) @@ -213,7 +213,7 @@ sound_strength = "hear a weak" sound = "pulse" - user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [their] [body_part]. You [sound_strength] [sound]. [message_holder]") //Vorestation + user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [their] [body_part]. You [sound_strength] [sound]. [message_holder]") //Vorestation edit. ([message holder]) return return ..(M,user)