mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 20:56:47 +01:00
15 lines
342 B
Plaintext
15 lines
342 B
Plaintext
/mob/dead/observer
|
|
var/lastclienttime = 0
|
|
|
|
/mob/dead/observer/view_manifest()
|
|
if(!client)
|
|
return
|
|
if(world.time < client.crew_manifest_delay)
|
|
return
|
|
client.crew_manifest_delay = world.time + (1 SECONDS)
|
|
|
|
if(!GLOB.crew_manifest_tgui)
|
|
GLOB.crew_manifest_tgui = new /datum/crew_manifest(src)
|
|
|
|
GLOB.crew_manifest_tgui.ui_interact(src)
|