mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 08:56:49 +01:00
9d6b304ac7
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.
15 lines
296 B
Plaintext
15 lines
296 B
Plaintext
/atom/movable/screen/psi
|
|
icon = 'icons/hud/mob/psi.dmi'
|
|
var/mob/living/owner
|
|
var/hidden = TRUE
|
|
|
|
/atom/movable/screen/psi/New(var/mob/living/_owner)
|
|
loc = null
|
|
owner = _owner
|
|
update_icon()
|
|
|
|
/atom/movable/screen/psi/Destroy()
|
|
if(owner && owner.client)
|
|
owner.client.screen -= src
|
|
. = ..()
|