Files
GS13NG/modular_citadel/code/modules/admin/secrets.dm
silicons 5b03f5b0ec more
2020-11-12 23:36:18 -07:00

9 lines
253 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")