From d0f8788afece1657364b95e60769cc1f2e1d70b7 Mon Sep 17 00:00:00 2001 From: Regen Date: Sat, 5 Sep 2015 15:57:44 +0200 Subject: [PATCH] Fixes Fixes VV editing AI / Borg names, so it updates correctly according to the camera name and PDA @Markolie --- code/__HELPERS/unsorted.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index ebc0de30564..96037ff2508 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -373,9 +373,8 @@ Turf and target are seperate in case you want to teleport some distance from a t var/mob/living/silicon/robot/R = src if(oldname != real_name) R.notify_ai(3, oldname, newname) - if(R.camera) - R.camera.c_tag = real_name - + R.custom_name = newname + R.updatename() if(oldname) //update the datacore records! This is goig to be a bit costly. for(var/list/L in list(data_core.general,data_core.medical,data_core.security,data_core.locked))