Skip to content

Commit f673116

Browse files
authored
'They seem unresponsive' Fix (#6661)
## About The Pull Request Fixes the time code behind the _"They have been unresponsive for X minutes"_ ## Why It's Good For The Game Old code was telling around a 10th of the actual time scale. Meaning someone ssd for three minutes was ssd for 30. This brings it up to speed. Pun intended ## Changelog :cl: fix: "They seem unresponsive" Time will now be much more accurate /:cl:
1 parent 7b58ac8 commit f673116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monkestation/code/modules/flavor_text/flavor_examine.dm

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
// if the mob doesn't have a client, show how long they've been disconnected for.
7070
if(!client && last_connection_time && stat != DEAD)
71-
var/formatted_afk_time = span_bold("[round((world.time - last_connection_time) / (60*60), 0.1)]")
71+
var/formatted_afk_time = span_bold("[round((world.time - lastclienttime) / (1 MINUTES), 0.1)]")
7272
expanded_examine += span_italics("\n[p_Theyve()] been unresponsive for [formatted_afk_time] minute(s).\n")
7373

7474
if(length(expanded_examine))

0 commit comments

Comments
 (0)