From d883192cf9361db87bd9873c783db869cd62b8f1 Mon Sep 17 00:00:00 2001 From: Fermi <> Date: Sun, 8 Sep 2019 02:53:11 +0100 Subject: [PATCH] Forgot to save --- .../code/modules/reagents/chemistry/reagents/SDGF.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/SDGF.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/SDGF.dm index 6ac19496cc..8f5260b607 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/SDGF.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/SDGF.dm @@ -79,10 +79,10 @@ IMPORTANT FACTORS TO CONSIDER WHILE BALANCING //Process the willing ghosts, and make sure they're actually in the body when they're moved into it! candies = shuffle(candies)//Shake those ghosts up! for(var/mob/dead/observer/C2 in candies) - if(C2.mind && C2.key) + if(C2.key && C2) + SM.key = C2.key message_admins("Ghost candidate found! [C2] key [C2.key] is becoming a clone of [M] key: [M.key] (They agreed to respect the character they're becoming, and agreed to not ERP without express permission from the original.)") log_game("FERMICHEM: [M] ckey: [M.key] is creating a clone, controlled by [C2]") - SM.key = C2.key break else candies =- C2