Files
Paradise/code/modules/world_topic/ping.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

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