From 1be95af700f9573c1d1c7d3dcd18eb29f61a66db Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 11 Jun 2017 17:29:53 -0400 Subject: [PATCH] Fix backup implants Wrong args (they've always been wrong, it seems, but in a way that worked fine until now) --- code/modules/resleeving/infocore.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/resleeving/infocore.dm b/code/modules/resleeving/infocore.dm index faeabe82c8..c85e5eaa14 100644 --- a/code/modules/resleeving/infocore.dm +++ b/code/modules/resleeving/infocore.dm @@ -69,7 +69,7 @@ var/datum/transhuman/infocore/transcore = new/datum/transhuman/infocore MR.nif_software = null else - MR = new(mind, mind.current, TRUE, one_time) + MR = new(mind, mind.current, add_to_db = TRUE, one_time = one_time) return 1 @@ -138,7 +138,7 @@ var/datum/transhuman/infocore/transcore = new/datum/transhuman/infocore var/one_time = FALSE -/datum/transhuman/mind_record/New(var/datum/mind/mind,var/mob/living/carbon/human/M,var/obj/item/weapon/implant/backup/imp,var/add_to_db = 1,var/one_time = FALSE) +/datum/transhuman/mind_record/New(var/datum/mind/mind, var/mob/living/carbon/human/M, var/add_to_db = TRUE, var/one_time = FALSE) ASSERT(mind) src.one_time = one_time