diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index aa7f6331890..82a59ea182a 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -374,6 +374,12 @@ if(print_flavor_text()) msg += "[print_flavor_text()]\n" msg += "*---------*" + + var/datum/vampire/V = get_antag_datum(MODE_VAMPIRE) + if(V && (V.status & VAMP_DRAINING)) + var/obj/item/grab/G = get_active_hand() + msg += SPAN_ALERT("\n[get_pronoun("He")] is biting [G.affecting]'[G.affecting.get_pronoun("end")] neck!") + if (pose) if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 ) pose = addtext(pose,".") //Makes sure all emotes end with a period. diff --git a/html/changelogs/example copy.yml b/html/changelogs/example copy.yml new file mode 100644 index 00000000000..f5b990605f8 --- /dev/null +++ b/html/changelogs/example copy.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Vampires draining blood will now show as biting someone when examined."