From 14b659d36d92cda60add9e5863556dca80eb91c4 Mon Sep 17 00:00:00 2001 From: Firecage Date: Fri, 30 Dec 2016 20:49:37 +0200 Subject: [PATCH] Fixes the issue where a newly cloned body could have their retardation removed via H2M2H --- code/modules/mob/transform_procs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index fa320cb8b8c..a66b1d653c8 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -82,6 +82,7 @@ O.setOxyLoss(getOxyLoss(), 0) O.setCloneLoss(getCloneLoss(), 0) O.adjustFireLoss(getFireLoss(), 0) + O.setBrainLoss(getBrainLoss(), 0) O.updatehealth() O.radiation = radiation @@ -236,6 +237,7 @@ O.setOxyLoss(getOxyLoss(), 0) O.setCloneLoss(getCloneLoss(), 0) O.adjustFireLoss(getFireLoss(), 0) + O.setBrainLoss(getBrainLoss(), 0) O.updatehealth() O.radiation = radiation