From 9cd7bcdc628da0d48558bb5f1e77b78c9c467c20 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sat, 10 Sep 2022 14:46:44 +1000 Subject: [PATCH] Makes wounds take time to disappear again --- code/modules/organs/organ_external.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 9ef9460c60..aeef6d1eee 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -732,8 +732,8 @@ Note that amputating the affected organ does in fact remove the infection from t return for(var/datum/wound/W in wounds) - // wounds used to be able to disappear after 10 minutes at the earliest, for now just remove them as soon as there is no damage - if(W.damage <= 0) + // wounds can disappear after 10 minutes at the earliest + if(W.damage <= 0 && W.created + 10 MINUTES <= world.time) wounds -= W continue // let the GC handle the deletion of the wound