mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
Moves all HUD screen object icon files from various scattered locations to icons/hud. No changes made to any icon_states in this PR, no player-facing changes. Part of larger icon organization work and in preparation for action button rework.
16 lines
435 B
Plaintext
16 lines
435 B
Plaintext
/mob/living/captive_brain/instantiate_hud(datum/hud/HUD)
|
|
HUD.captive_brain_hud()
|
|
|
|
/datum/hud/proc/captive_brain_hud()
|
|
src.adding = list()
|
|
|
|
var/atom/movable/screen/resist = new /atom/movable/screen()
|
|
resist.name = "resist"
|
|
resist.icon = 'icons/hud/mob/captive_brain.dmi'
|
|
resist.icon_state = "resist"
|
|
resist.screen_loc = "EAST-8,BOTTOM:8"
|
|
resist.layer = HUD_ABOVE_ITEM_LAYER
|
|
adding += resist
|
|
|
|
mymob.client.screen += src.adding
|