diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 20bc825f5e4a..8d83fd68a8c9 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -134,6 +134,16 @@ /datum/world_topic/adminwho/Run(list/input) return ircadminwho() +/datum/world_topic/mentorwho/Run(list/input) + var/list/message = list("Mentors: ") + for(var/client/mentor in GLOB.mentors) + if(LAZYLEN(message) > 1) + message += ", [mentor.key]" + else + message += "[mentor.key]" + + return jointext(message, "") + /datum/world_topic/status keyword = "status"