From 3402a76fa19e4d98fc1a66aa66ca04318c04e49a Mon Sep 17 00:00:00 2001 From: LordME <58342752+TheLordME@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:28:02 +0200 Subject: [PATCH] reads dead people reminders --- code/controllers/subsystem/transcore_vr.dm | 7 +++---- code/modules/resleeving/mirror.dm | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/controllers/subsystem/transcore_vr.dm b/code/controllers/subsystem/transcore_vr.dm index 70b1e3fa8fed..9f0d1fb7645e 100644 --- a/code/controllers/subsystem/transcore_vr.dm +++ b/code/controllers/subsystem/transcore_vr.dm @@ -33,7 +33,7 @@ SUBSYSTEM_DEF(transcore) var/timer = TICK_USAGE INTERNAL_PROCESS_STEP(SSTRANSCORE_IMPLANTS,TRUE,process_implants,cost_implants,SSTRANSCORE_BACKUPS) -// INTERNAL_PROCESS_STEP(SSTRANSCORE_BACKUPS,FALSE,process_backups,cost_backups,SSTRANSCORE_IMPLANTS) + INTERNAL_PROCESS_STEP(SSTRANSCORE_BACKUPS,FALSE,process_backups,cost_backups,SSTRANSCORE_IMPLANTS) /datum/controller/subsystem/transcore/proc/process_implants(resumed = 0) if (!resumed) @@ -139,9 +139,8 @@ SUBSYSTEM_DEF(transcore) MR.nif_durability = null MR.nif_software = null MR.nif_savedata = null - - - MR = new(mind, mind.current, add_to_db = FALSE, one_time = one_time) + else + MR = new(mind, mind.current, add_to_db = TRUE, one_time = one_time) return MR diff --git a/code/modules/resleeving/mirror.dm b/code/modules/resleeving/mirror.dm index 11e96ebbdae4..a870b06365ec 100644 --- a/code/modules/resleeving/mirror.dm +++ b/code/modules/resleeving/mirror.dm @@ -43,6 +43,7 @@ icon_state = "mirror_implant" human = H human.mirror = src + LAZYADD(SStranscore.implants, src) /obj/item/implant/mirror/afterattack(atom/target, mob/user, clickchain_flags, list/params) var/obj/machinery/computer/transhuman/resleeving/comp = target