From f89385c59acace46a1aa2fe2af924e8a27a86ad9 Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Fri, 18 Mar 2011 21:58:23 +0000 Subject: [PATCH] Since roburger borgs now properly transfer mind datums to the new mob, guess I'd better make sure it adds the same memory that I gave to borged traitors back when I made borging transfer the mind datum, so we don't get derp traitors trying to win after becoming a borg borg (which they can't, borged people are unable to succeed at hijack/escape objectives) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1206 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/transform_procs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 92fe95cceef..774a80f6b0c 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -200,6 +200,8 @@ src.mind.transfer_to(O) if (src.mind.assigned_role == "Cyborg") src.mind.original = O + else if (src.mind.special_role) O.mind.store_memory("In case you look at this after being borged, the objectives are only here until I find a way to make them not show up for you, as I can't simply delete them without screwing up round-end reporting. --NeoFite") + else //welp src.mind = new /datum/mind( ) src.mind.key = src.key