Merge pull request #4901 from CHOMPStation2/upstream-merge-13698

[MIRROR] Makes wounds take time to disappear again to fix bleeding surgery
This commit is contained in:
Nadyr
2022-09-18 20:21:38 -04:00
committed by GitHub

View File

@@ -735,7 +735,7 @@ Note that amputating the affected organ does in fact remove the infection from t
for(var/datum/wound/W in wounds)
// wounds can disappear after 10 minutes at the earliest
if(W.damage <= 0 && W.created + 10 * 10 * 60 <= world.time)
if(W.damage <= 0 && W.created + 10 MINUTES <= world.time)
wounds -= W
continue
// let the GC handle the deletion of the wound