Two minor fixes (#13412)

This commit is contained in:
VisVirific
2022-03-24 10:54:32 +01:00
committed by GitHub
parent b5aa9d46a7
commit f39477a1da
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -846,7 +846,7 @@ Note that amputating the affected organ does in fact remove the infection from t
number_wounds += W.amount
//things tend to bleed if they are CUT OPEN
if (open && !clamped && (H && !(H.species.flags & NO_BLOOD)))
if (open && !clamped && (H && !(H.species.flags & NO_BLOOD) && !(status & ORGAN_ROBOT)))
status |= ORGAN_BLEEDING
if (istype(tendon))