mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-13 10:52:09 +00:00
Part of backend stuff required for #19188. Should probably be test merged. --------- Co-authored-by: Cody Brittain <cbrittain10@live.com>
15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
/atom/movable/screen/psi
|
|
icon = 'icons/mob/screen/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
|
|
. = ..()
|