diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 240d004e0bf..b4438032045 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -381,7 +381,7 @@ var/counter = 1 while(src.active2.fields[text("com_[]", counter)]) counter++ - src.active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [], 2053
[]", src.authenticated, src.rank, time2text(world.realtime, "DDD MMM DD hh:mm:ss"), t1) + src.active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, time2text(world.realtime, "MMM DD"), worldtime2text(), year_integer+540, t1,) if (href_list["del_c"]) if ((istype(src.active2, /datum/data/record) && src.active2.fields[text("com_[]", href_list["del_c"])])) diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm index 913c11716fc..44db91f9079 100644 --- a/code/game/machinery/computer/security.dm +++ b/code/game/machinery/computer/security.dm @@ -352,7 +352,7 @@ What a mess.*/ var/counter = 1 while(active2.fields[text("com_[]", counter)]) counter++ - active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [], 2053
[]", authenticated, rank, time2text(world.realtime, "DDD MMM DD hh:mm:ss"), t1) + active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, time2text(world.realtime, "MMM DD"), worldtime2text(), year_integer+540, t1,) if ("Delete Record (ALL)") if (active1) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 0bd187a53f6..852638d7321 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -1345,13 +1345,13 @@ /obj/mecha/proc/get_log_html() - var/output = "[src.name] Log" - for(var/list/entry in log) - output += {"
[time2text(entry["time"],"DDD MMM DD hh:mm:ss")] 2555
-
[entry["message"]]
- "} - output += "" - return output + var/output = "[src.name] Log" + for(var/list/entry in log) + output += {"
[time2text(entry["date"],"MMM DD")] [entry["time"]] [entry["year"]]
+
[entry["message"]]
+ "} + output += "" + return output /obj/mecha/proc/output_access_dialog(obj/item/weapon/card/id/id_card, mob/user) @@ -1411,7 +1411,7 @@ /obj/mecha/proc/log_message(message as text,red=null) log.len++ - log[log.len] = list("time"=world.timeofday,"message"="[red?"":null][message][red?"":null]") + log[log.len] = list("date","time"="[worldtime2text()]","year"="[year_integer+540]","message"="[red?"":null][message][red?"":null]") return log.len /obj/mecha/proc/log_append_to_last(message as text,red=null) @@ -1419,6 +1419,8 @@ last_entry["message"] += "
[red?"":null][message][red?"":null]" return +var/year = time2text(world.realtime,"YYYY") +var/year_integer = text2num(year) // = 2013??? ///////////////// ///// Topic ///// diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 7cb46a33d89..b9cfceccd05 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -271,7 +271,8 @@ var/global/list/obj/item/device/pda/PDAs = list() dat += text("ID: [id ? "[id.registered_name], [id.assignment]" : "----------"]") dat += text("
[id ? "Update PDA Info" : ""]
") - dat += "Station Time: [worldtime2text()]"//:[world.time / 100 % 6][world.time / 100 % 10]" + dat += "[worldtime2text()]
" //:[world.time / 100 % 6][world.time / 100 % 10]" + dat += "[time2text(world.realtime, "MMM DD")] [year_integer+540]" dat += "

" diff --git a/code/modules/detectivework/scanner.dm b/code/modules/detectivework/scanner.dm index dba1f913f0c..e55e83d4f6e 100644 --- a/code/modules/detectivework/scanner.dm +++ b/code/modules/detectivework/scanner.dm @@ -110,7 +110,7 @@ spawn(0) var/found_something = 0 - add_log("[get_timestamp()] - [target_name]", 0) + add_log("[worldtime2text()] - [target_name]", 0) // Fingerprints if(fingerprints && fingerprints.len)