mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 23:01:35 +00:00
* world/Topic Refactor * These arent needed anymore * How could I forget this * Biggest edit ever * Forgot this * Mini refactor
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
/datum/world_topic_handler/ping
|
|
topic_key = "ping"
|
|
|
|
/datum/world_topic_handler/ping/execute(list/input, key_valid)
|
|
/*
|
|
Basically a more efficient version of
|
|
|
|
if("ping" in input)
|
|
var/x = 1
|
|
for(var/client/C)
|
|
x++
|
|
return x
|
|
*/
|
|
return length(GLOB.clients) + 1
|