From d825304e00ce745249257d072c3270bc86125f19 Mon Sep 17 00:00:00 2001 From: Dip Date: Fri, 21 Aug 2020 18:03:26 -0300 Subject: [PATCH] removing commented code --- code/modules/mob/mob.dm | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 2fb28da2..bd23ddac 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -563,31 +563,6 @@ tickrefresh++ stat(null, sList) - /* - if(statpanel("Status") && tickrefresh == 0) - if (client) - stat(null, "Ping: [round(client.lastping, 1)]ms (Average: [round(client.avgping, 1)]ms)") - stat(null, "Map: [SSmapping.config?.map_name || "Loading..."]") - var/datum/map_config/cached = SSmapping.next_map_config - if(cached) - stat(null, "Next Map: [cached.map_name]") - stat(null, "Round ID: [GLOB.round_id ? GLOB.round_id : "NULL"]") - stat(null, "Server Time: [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")]") - stat(null, "Round Time: [WORLDTIME2TEXT("hh:mm:ss")]") - stat(null, "Station Time: [STATION_TIME_TIMESTAMP("hh:mm:ss")]") - stat(null, "Time Dilation: [round(SStime_track.time_dilation_current,1)]% AVG:([round(SStime_track.time_dilation_avg_fast,1)]%, [round(SStime_track.time_dilation_avg,1)]%, [round(SStime_track.time_dilation_avg_slow,1)]%)") - if(SSshuttle.emergency) - var/ETA = SSshuttle.emergency.getModeStr() - if(ETA) - stat(null, "[ETA] [SSshuttle.emergency.getTimerStr()]") - tickrefresh++ - - else if(statpanel("Status") && tickrefresh != 0) - if(tickrefresh == 5) - tickrefresh = 0 - else - tickrefresh++ - */ if(client && client.holder) if(statpanel("MC")) var/turf/T = get_turf(client.eye)