diff --git a/hyperstation/code/modules/mob/living/silicon/robot/robot.dm b/hyperstation/code/modules/mob/living/silicon/robot/robot.dm index b41f02c4d..20c7e7679 100644 --- a/hyperstation/code/modules/mob/living/silicon/robot/robot.dm +++ b/hyperstation/code/modules/mob/living/silicon/robot/robot.dm @@ -1,21 +1,3 @@ //This file is empty right now, but leaves room for people to put shit here in the future for those who are lazy /mob/living/silicon/robot var/datum/action/cyborg_small_sprite/small_sprite_action //This gets replaced every time the cyborg changes modules --Cyanosis - -//Main code edits - -/mob/living/silicon/robot - var/obj/item/pda/ai/aiPDA //TODO: Refractor the whole PDA system to be on /mob/living/silicon and add the pda functions of all the other silicons from /tg/ - -/mob/living/silicon/robot/Initialize(mapload) - . = ..() - if(!shell) - aiPDA = new/obj/item/pda/ai(src) - aiPDA.owner = real_name - aiPDA.ownjob = "Cyborg" - aiPDA.name = real_name + " (" + aiPDA.ownjob + ")" - -/mob/living/silicon/robot/replace_identification_name(oldname, newname) - if(aiPDA && !shell) - aiPDA.owner = newname - aiPDA.name = newname + " (" + aiPDA.ownjob + ")"