mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-03 22:22:31 +00:00
* Super early initial commit * Why do I keep comitting this * in between * In between * Sort fix. Transfer fix. HTML and more * Scrolling + define values change * Search fixes and time input fixes * Minor tweaks. Fuel tank inclusion. Fixes * derp * Extra logging to fuel tank * minor stuff * add the message to admins for fueltanks * Don't keep mob/atom references + fixes * line fixes? * Review improvements * pois comment
10 lines
364 B
Plaintext
10 lines
364 B
Plaintext
GLOBAL_LIST_INIT(open_logging_views, list())
|
|
|
|
/client/proc/cmd_admin_open_logging_view()
|
|
set category = "Admin"
|
|
set name = "Open Logging View"
|
|
set desc = "Opens the detailed logging viewer"
|
|
|
|
if(!GLOB.open_logging_views[usr.client.ckey])
|
|
GLOB.open_logging_views[usr.client.ckey] = new /datum/log_viewer()
|
|
GLOB.open_logging_views[usr.client.ckey].show_ui(usr) |