Merge pull request #996 from Giacomand/blob_userability

Blob usability changes and tweaks
This commit is contained in:
Cheridan
2013-07-21 12:09:28 -07:00
12 changed files with 91 additions and 43 deletions
+9 -1
View File
@@ -1110,9 +1110,12 @@ datum/mind
fail |= !ticker.mode.equip_revolutionary(current)
/mob/proc/sync_mind()
mind_initialize() //updates the mind (or creates and initializes one if one doesn't exist)
mind.active = 1 //indicates that the mind is currently synced with a client
//Initialisation procs
/mob/living/proc/mind_initialize()
/mob/proc/mind_initialize()
if(mind)
mind.key = key
@@ -1180,6 +1183,11 @@ datum/mind
mind.assigned_role = "pAI"
mind.special_role = ""
//BLOB
/mob/camera/overmind/mind_initialize()
..()
mind.special_role = "Blob"
//Animals
/mob/living/simple_animal/mind_initialize()
..()