Merge pull request #13673 from Kyep/robotic_brain_fix

Fixes brainless cyborgs, Removes "Android" alt job title for cyborgs
This commit is contained in:
Fox McCloud
2020-07-21 16:44:57 -04:00
committed by GitHub
2 changed files with 3 additions and 6 deletions
+2 -5
View File
@@ -82,14 +82,11 @@
O.notify_ai(1)
if(O.mind && O.mind.assigned_role == "Cyborg")
if(O.mind.role_alt_title == "Android")
if(O.mind.role_alt_title == "Robot")
O.mmi = new /obj/item/mmi/robotic_brain(O)
else if(O.mind.role_alt_title == "Robot")
O.mmi = null //Robots do not have removable brains.
else
O.mmi = new /obj/item/mmi(O)
if(O.mmi) O.mmi.transfer_identity(src) //Does not transfer key/client.
O.mmi.transfer_identity(src) //Does not transfer key/client.
O.update_pipe_vision()