From ec04f2f3c9d9faa790f95244d7a7b68bf2bd9f8a Mon Sep 17 00:00:00 2001 From: swissloaf <39781787+swissloaf@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:45:03 -0500 Subject: [PATCH 1/4] Asdsdasd --- code/datums/world_topic.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 20bc825f5e4a..2c81dbf15385 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]" + else + message += "[mentor]" + + return jointext(message, "") + /datum/world_topic/status keyword = "status" From f864cc3b610f8c9211f1a11161b659aefcfe3be0 Mon Sep 17 00:00:00 2001 From: swissloaf <39781787+swissloaf@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:50:58 -0500 Subject: [PATCH 2/4] FUCK YOU TURDIS --- code/datums/world_topic.dm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 2c81dbf15385..8e8376e89a4c 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -135,12 +135,15 @@ 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]" - else - message += "[mentor]" + var/list/message = list("Mentors: ") + for(var/client/mentor in GLOB.mentors) + if(LAZYLEN(message) > 1) + message += ", [mentor]" + else + message += "[mentor]" + + return jointext(message, "") + return jointext(message, "") From 4b928a9a80cff4ed1881abe5d9570a942865f40c Mon Sep 17 00:00:00 2001 From: swissloaf <39781787+swissloaf@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:51:19 -0500 Subject: [PATCH 3/4] asd --- code/datums/world_topic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 8e8376e89a4c..a2df87323a8f 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -138,9 +138,9 @@ var/list/message = list("Mentors: ") for(var/client/mentor in GLOB.mentors) if(LAZYLEN(message) > 1) - message += ", [mentor]" + message += ", [mentor.key]" else - message += "[mentor]" + message += "[mentor.key]" return jointext(message, "") From ef632c400def431e612fc57a0c2c0654a0ed97c1 Mon Sep 17 00:00:00 2001 From: swissloaf <39781787+swissloaf@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:52:02 -0500 Subject: [PATCH 4/4] sd --- code/datums/world_topic.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index a2df87323a8f..8d83fd68a8c9 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -144,9 +144,6 @@ return jointext(message, "") - - return jointext(message, "") - /datum/world_topic/status keyword = "status"