From fe9f279ed70d6be7dd139dd1a256e3ee48864685 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 30 Aug 2022 23:58:16 -0400 Subject: [PATCH] Fixes runtime when putting a mmi into a borg (#69548) Fixes runtime when putting a brain into a borg --- code/game/objects/items/robot/robot_parts.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/robot/robot_parts.dm b/code/game/objects/items/robot/robot_parts.dm index 8223abf9c7c..dd60391ac01 100644 --- a/code/game/objects/items/robot/robot_parts.dm +++ b/code/game/objects/items/robot/robot_parts.dm @@ -299,7 +299,7 @@ O.mmi = W //and give the real mmi to the borg. O.updatename(brainmob.client) brainmob.mind.transfer_to(O) - brainmob.mind.add_memory(MEMORY_BORGED, list(DETAIL_PROTAGONIST = user), story_value = STORY_VALUE_OKAY, memory_flags = MEMORY_SKIP_UNCONSCIOUS) + O.mind.add_memory(MEMORY_BORGED, list(DETAIL_PROTAGONIST = user), story_value = STORY_VALUE_OKAY, memory_flags = MEMORY_SKIP_UNCONSCIOUS) playsound(O.loc, 'sound/voice/liveagain.ogg', 75, TRUE) if(O.mind && O.mind.special_role)