Explorer Update - Cataloguers (#6016)

* Explorer catalog scanners.
This commit is contained in:
Neerti
2019-03-30 16:18:15 -04:00
committed by Mechoid
parent 4acb50dabd
commit 1afbe8d4b0
85 changed files with 2640 additions and 299 deletions

View File

@@ -278,11 +278,11 @@
modtype = prefix
if(istype(mmi, /obj/item/device/mmi/digital/posibrain))
braintype = "Robot"
braintype = BORG_BRAINTYPE_POSI
else if(istype(mmi, /obj/item/device/mmi/digital/robot))
braintype = "Drone"
braintype = BORG_BRAINTYPE_DRONE
else
braintype = "Cyborg"
braintype = BORG_BRAINTYPE_CYBORG
var/changed_name = ""
@@ -1099,7 +1099,7 @@
return
/mob/living/silicon/robot/is_sentient()
return braintype != "Drone"
return braintype != BORG_BRAINTYPE_DRONE
/mob/living/silicon/robot/drop_item()