Checking Injuries now shows Bleeding (#7904)

Examining yourself for injuries will now show you whether your limb is bleeding or not.
This commit is contained in:
Geeves
2020-01-06 20:20:53 +01:00
committed by Matt Atlas
parent 3ba1c4e9cd
commit 244b970fc1
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -234,6 +234,8 @@
status += "is bruised and necrotic"
if(!org.is_usable())
status += "dangling uselessly"
if(org.status & ORGAN_BLEEDING)
status += span("danger", "bleeding")
if(status.len)
src.show_message("My [org.name] is <span class='warning'>[english_list(status)].</span>",1)
else