Merge pull request #11687 from Kyep/you_have_time

Public Time & Security
This commit is contained in:
variableundefined
2019-07-12 18:20:34 +08:00
committed by GitHub
7 changed files with 8 additions and 13 deletions
@@ -263,7 +263,6 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
..()
statpanel("Status")
if(client.statpanel == "Status")
show_stat_station_time()
show_stat_emergency_shuttle_eta()
stat(null, "Respawnability: [(src in GLOB.respawnable_list) ? "Yes" : "No"]")
@@ -95,7 +95,6 @@ I'm using this for Stat to give it a more nifty interface to work with
..()
if(has_synthetic_assistance())
statpanel("Status")
show_stat_station_time()
show_stat_emergency_shuttle_eta()
if(client.statpanel == "Status")
@@ -162,8 +162,6 @@
stat(null, "Intent: [a_intent]")
stat(null, "Move Mode: [m_intent]")
show_stat_station_time()
show_stat_emergency_shuttle_eta()
if(client.statpanel == "Status")
@@ -156,7 +156,6 @@
/mob/living/silicon/Stat()
..()
if(statpanel("Status"))
show_stat_station_time()
show_stat_emergency_shuttle_eta()
show_system_integrity()
+3
View File
@@ -990,6 +990,9 @@ var/list/slot_equipment_priority = list( \
statpanel("Status") // Switch to the Status panel again, for the sake of the lazy Stat procs
if(client && client.statpanel == "Status" && SSticker)
show_stat_station_time()
// this function displays the station time in the status panel
/mob/proc/show_stat_station_time()
stat(null, "Round Time: [worldtime2text()]")
@@ -136,8 +136,6 @@
..()
statpanel("Status")
if(client.statpanel == "Status" && SSticker)
show_stat_station_time()
/mob/new_player/Topic(href, href_list[])