From 0293205549c2d092ed85f299dda536df7af38526 Mon Sep 17 00:00:00 2001 From: Mechoid Date: Mon, 15 Apr 2019 13:46:42 -0700 Subject: [PATCH] Client check only. --- code/modules/metric/activity.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/metric/activity.dm b/code/modules/metric/activity.dm index 370ae0eb2f..c4acdc57ec 100644 --- a/code/modules/metric/activity.dm +++ b/code/modules/metric/activity.dm @@ -6,7 +6,7 @@ . = 0 return - if(!M.mind || !M.client) // Logged out. They might come back but we can't do any meaningful assessments for now. + if(!M.client) // Logged out. They might come back but we can't do any meaningful assessments for now. . = 0 return @@ -79,4 +79,4 @@ . += assess_player_activity(O) num++ if(num) - . = round(. / num, 0.1) \ No newline at end of file + . = round(. / num, 0.1)