From 6d3e742992a8b4a4e543665d4eb2822be2d7d517 Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 12 Nov 2012 13:38:55 +0100 Subject: [PATCH] Large amounts of damage can now trigger internal bleeding. --- code/datums/organs/organ_external.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)