Files
GS13/modular_citadel/code/modules/admin/secrets.dm
2019-09-23 18:26:34 +02:00

8 lines
252 B
Plaintext

/datum/admins/proc/CitadelMentorLogSecret()
var/dat = "<B>Mentor Log<HR></B>"
for(var/l in GLOB.mentorlog)
dat += "<li>[l]</li>"
if(!GLOB.mentorlog.len)
dat += "No mentors have done anything this round!"
usr << browse(dat, "window=mentor_log")