Adds examine text when vampires are draining blood (#12555)

This commit is contained in:
Casper3667
2021-10-07 00:08:09 +02:00
committed by GitHub
parent 356101f057
commit 35a20ba771
2 changed files with 12 additions and 0 deletions
@@ -374,6 +374,12 @@
if(print_flavor_text()) msg += "[print_flavor_text()]\n"
msg += "*---------*</span>"
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.
+6
View File
@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- rscadd: "Vampires draining blood will now show as biting someone when examined."