mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-24 00:12:07 +00:00
* Replaces all human in X to GLOB.human_list * crew monitor * no playerlist converts * forgot to stage there...
22 lines
515 B
Plaintext
22 lines
515 B
Plaintext
/obj/effect/manifest
|
|
name = "manifest"
|
|
icon = 'icons/mob/screen_gen.dmi'
|
|
icon_state = "x"
|
|
|
|
/obj/effect/manifest/New()
|
|
|
|
src.invisibility = 101
|
|
return
|
|
|
|
/obj/effect/manifest/proc/manifest()
|
|
var/dat = "<B>Crew Manifest</B>:<BR>"
|
|
for(var/thing in GLOB.human_list)
|
|
var/mob/living/carbon/human/M = thing
|
|
dat += text(" <B>[]</B> - []<BR>", M.name, M.get_assignment())
|
|
var/obj/item/paper/P = new /obj/item/paper( src.loc )
|
|
P.info = dat
|
|
P.name = "paper- 'Crew Manifest'"
|
|
//SN src = null
|
|
qdel(src)
|
|
return
|