From e6d09798a63be8dad0585d049cf4acfcc7474b39 Mon Sep 17 00:00:00 2001 From: Cyantime Date: Sun, 31 Dec 2017 22:45:44 -0500 Subject: [PATCH] Prevents low health bodies from dying on creation --- code/modules/resleeving/machines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/resleeving/machines.dm b/code/modules/resleeving/machines.dm index 792af83cbb..6384e15a97 100644 --- a/code/modules/resleeving/machines.dm +++ b/code/modules/resleeving/machines.dm @@ -70,7 +70,7 @@ H.original_player = current_project.ckey //Apply damage - H.adjustCloneLoss(150) + H.adjustCloneLoss((H.getMaxHealth() - config.health_threshold_dead)*0.75) H.Paralyse(4) H.updatehealth()