mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
/obj/screen/psi
|
|
icon = 'icons/mob/screen/psi.dmi'
|
|
var/mob/living/owner
|
|
var/hidden = TRUE
|
|
|
|
/obj/screen/psi/New(var/mob/living/_owner)
|
|
loc = null
|
|
owner = _owner
|
|
update_icon()
|
|
|
|
/obj/screen/psi/Destroy()
|
|
if(owner && owner.client)
|
|
owner.client.screen -= src
|
|
. = ..()
|