From fe0c04534f8d4287d10f11b660b611613dfc3327 Mon Sep 17 00:00:00 2001 From: Twinmold93 Date: Thu, 2 May 2019 12:59:05 -0500 Subject: [PATCH] Moved to MC Tab Moves the time stamp to the MC Tab per Fox's request. --- code/modules/mob/mob.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 14004fa4a5b..779ed6bf900 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -981,6 +981,7 @@ var/list/slot_equipment_priority = list( \ stat("CPU:", "[world.cpu]") stat("Instances:", "[num2text(world.contents.len, 10)]") GLOB.stat_entry() + stat("Server Time:", time_stamp()) stat(null) if(Master) Master.stat_entry() @@ -1001,8 +1002,6 @@ var/list/slot_equipment_priority = list( \ /mob/proc/show_stat_station_time() stat(null, "Round Time: [worldtime2text()]") stat(null, "Station Time: [station_time_timestamp()]") - if(client.holder && (client.holder.rights & R_ADMIN)) - stat(null, "Server Time: [time_stamp()]") // this function displays the shuttles ETA in the status panel if the shuttle has been called /mob/proc/show_stat_emergency_shuttle_eta()