Minor fix to bleeding.

This commit is contained in:
cib
2012-07-10 19:11:48 +02:00
parent f9f8543a49
commit aa3a9ba062
+2 -1
View File
@@ -1097,7 +1097,8 @@
var/blood_max = 0
for(var/name in organs)
var/datum/organ/external/temp = organs[name]
if(!(temp.status & BLEEDING) || temp.status & ROBOT)
// temp.amputated means it's cleanly healed but the limb is still missing
if(!(temp.status & BLEEDING) || temp.status & ROBOT || temp.amputated)
continue
blood_max += 2
if(temp.status & DESTROYED && !(temp.status & GAUZED))