mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 09:41:29 +00:00
* world/Topic Refactor * These arent needed anymore * How could I forget this * Biggest edit ever * Forgot this * Mini refactor
11 lines
248 B
Plaintext
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)
|