diff --git a/code/datums/organs/organ_external.dm b/code/datums/organs/organ_external.dm index cf29a5dea61..e0238d2eed5 100644 --- a/code/datums/organs/organ_external.dm +++ b/code/datums/organs/organ_external.dm @@ -462,7 +462,10 @@ W = new wound_type(damage) - + // Possibly trigger an internal wound, too. + if(damage > 10 && prob(damage)) + var/datum/wound/internal_bleeding/I = new (5) + wounds += I // check whether we can add the wound to an existing wound for(var/datum/wound/other in wounds)