mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
7 lines
317 B
Plaintext
7 lines
317 B
Plaintext
/// Puts the text into the research html file, not log. See [INVESTIGATE_RESEARCH] for [/atom/proc/investigate_log]
|
|
/proc/log_research(text)
|
|
if(!text)
|
|
return
|
|
var/html_file = file("[GLOB.log_directory]/[INVESTIGATE_RESEARCH].html")
|
|
WRITE_FILE(html_file, "[time_stamp(format = "YYYY-MM-DD hh:mm:ss")] [text]<br>")
|