From 8ff0685f0df7f93959ec4ecc676a94f8ceeaeb21 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 15 May 2021 18:28:00 -0700 Subject: [PATCH] Update world_topic.dm --- code/datums/world_topic.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 1fff4cc026..c349bc6504 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -232,6 +232,9 @@ /datum/world_topic/jsonplayers/Run(list/input, addr) . = list() for(var/client/C in GLOB.clients) + if(C.holder?.fakekey) + . += C.holder.fakekey + continue . += C.key return json_encode(.)