edd6500d78
Repaths screen objects to /atom/movable
18 lines
457 B
Plaintext
18 lines
457 B
Plaintext
/datum/hud/living
|
|
ui_style = 'icons/hud/screen_gen.dmi'
|
|
|
|
/datum/hud/living/New(mob/living/owner)
|
|
..()
|
|
|
|
pull_icon = new /atom/movable/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_icon()
|
|
pull_icon.screen_loc = ui_living_pull
|
|
pull_icon.hud = src
|
|
static_inventory += pull_icon
|
|
|
|
//mob health doll! assumes whatever sprite the mob is
|
|
healthdoll = new /atom/movable/screen/healthdoll/living()
|
|
healthdoll.hud = src
|
|
infodisplay += healthdoll
|