Files
Paradise/code/modules/world_topic/players.dm
AffectedArc07 d6af52dd2b world/Topic Refactor (#14850)
* world/Topic Refactor

* These arent needed anymore

* How could I forget this

* Biggest edit ever

* Forgot this

* Mini refactor
2020-12-09 11:24:33 -05:00

11 lines
248 B
Plaintext

/datum/world_topic_handler/playerlist
topic_key = "playerlist"
/datum/world_topic_handler/playerlist/execute(list/input, key_valid)
var/list/keys = list()
for(var/I in GLOB.clients)
var/client/C = I
keys += C.key
return json_encode(keys)