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(.)