mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 12:56:10 +01:00
8f9de7c3e2
Refactored all the builtin text procs to use string interpolation instead. Added a linting for the above. This is based on, and should only be merged after, #19847
21 lines
519 B
Plaintext
21 lines
519 B
Plaintext
/obj/effect/manifest
|
|
name = "manifest"
|
|
icon = 'icons/mob/screen/generic.dmi'
|
|
icon_state = "x"
|
|
unacidable = 1//Just to be sure.
|
|
|
|
/obj/effect/manifest/New()
|
|
set_invisibility(101)
|
|
return
|
|
|
|
/obj/effect/manifest/proc/manifest()
|
|
var/dat = "<B>Crew Manifest</B>:<BR>"
|
|
for(var/mob/living/carbon/human/M in GLOB.mob_list)
|
|
dat += " <B>[M.name]</B> - [M.get_assignment()]<BR>"
|
|
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
|