mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
21 lines
521 B
Plaintext
21 lines
521 B
Plaintext
/obj/effect/manifest
|
|
name = "manifest"
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x"
|
|
unacidable = TRUE//Just to be sure.
|
|
|
|
/obj/effect/manifest/New()
|
|
|
|
src.invisibility = 101
|
|
return
|
|
|
|
/obj/effect/manifest/proc/manifest()
|
|
var/dat = "<B>Crew Manifest</B>:<BR>"
|
|
for(var/mob/living/carbon/human/M in mob_list)
|
|
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 |