mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Tgs chatcommand runtime (#7817)
This commit is contained in:
@@ -16,13 +16,13 @@
|
||||
var/client/C = X
|
||||
if(C)
|
||||
counts++
|
||||
if(C && !(istype(C.mob,/mob/new_player) || istype(C.mob, /mob/observer)))
|
||||
if(C && C.mob && isbelly(C.mob.loc))
|
||||
bellied++
|
||||
if(C.is_afk())
|
||||
afks++
|
||||
else
|
||||
active++
|
||||
if(!(istype(C.mob,/mob/new_player) || istype(C.mob, /mob/observer)))
|
||||
if(C.mob && isbelly(C.mob.loc))
|
||||
bellied++
|
||||
if(C.is_afk())
|
||||
afks++
|
||||
else
|
||||
active++
|
||||
|
||||
return "Current server status:\n**Web Manifest:** <http://manifest.chompstation13.net/>\n**Players:** [counts]\n**Active:** [active]\n**Bar Statues:** [afks]\n**Bellied:** [bellied]\n\n**Round Duration:** [roundduration2text()]" //CHOMPEdit
|
||||
|
||||
|
||||
Reference in New Issue
Block a user