Adds a UI indicator for blob overminds.

This unfortunately necessitated the addition of a mob/camera/blob/Life(), but I think that the added ease-of-use is worth it.
This commit is contained in:
Cheridan
2013-07-12 17:56:54 -05:00
parent 22dc673d1e
commit c68e73e164
4 changed files with 24 additions and 1 deletions

View File

@@ -166,6 +166,7 @@ var/datum/global_hud/global_hud = new()
var/show_intent_icons = 0
var/hotkey_ui_hidden = 0 //This is to hide the buttons that can be used via hotkeys. (hotkeybuttons list of buttons)
var/obj/screen/blobdisplay
var/obj/screen/r_hand_hud_object
var/obj/screen/l_hand_hud_object
var/obj/screen/action_intent
@@ -257,4 +258,6 @@ datum/hud/New(mob/owner)
else if(isrobot(mymob))
robot_hud()
else if(isobserver(mymob))
ghost_hud()
ghost_hud()
else if(isovermind(mymob))
blob_hud()