From 88fa0ea83f4cad98cdfeae13cb4ac988f1eb4836 Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 9 Jan 2018 20:56:43 -0200 Subject: [PATCH] Merge pull request #34195 from tgstation/Cyberboss-patch-1 Fixes weakref runtimes --- code/modules/mob/living/carbon/human/human.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index afd0cd50be..40c50025b2 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -25,9 +25,10 @@ create_internal_organs() //most of it is done in set_species now, this is only for parent call handcrafting = new() - AddComponent(/datum/component/redirect, list(COMSIG_COMPONENT_CLEAN_ACT), CALLBACK(src, .proc/clean_blood)) - + . = ..() + + AddComponent(/datum/component/redirect, list(COMSIG_COMPONENT_CLEAN_ACT), CALLBACK(src, .proc/clean_blood)) /mob/living/carbon/human/OpenCraftingMenu() handcrafting.ui_interact(src)