From 6fbbe840fe441872fdbe4391ee2fe08fa2e46072 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 5 Jun 2020 15:55:08 -0400 Subject: [PATCH] Fix defib timer on MMIs --- code/modules/organs/subtypes/machine.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/organs/subtypes/machine.dm b/code/modules/organs/subtypes/machine.dm index fdf630f001..6cefcfcee6 100644 --- a/code/modules/organs/subtypes/machine.dm +++ b/code/modules/organs/subtypes/machine.dm @@ -5,6 +5,7 @@ organ_tag = O_CELL parent_organ = BP_TORSO vital = 1 + var/defib_timer = 1 // This sits in the brain organ slot, but is not a brain. /obj/item/organ/internal/cell/New() robotize() @@ -46,6 +47,10 @@ sleep(-1) update_from_mmi() +// This sits in the brain organ slot, but is not a brain. Posibrains and dronecores aren't brains either. +/obj/item/organ/internal/mmi_holder/proc/tick_defib_timer() + return + /obj/item/organ/internal/mmi_holder/proc/update_from_mmi() if(!stored_mmi.brainmob)