mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 10:41:42 +00:00
* Initial Commit - Trying to add DC to Travis * Forgot to chmod * This took too long * Farie Fixes * Fixes new code * Job factions are fucking smelly * Loadouts work again * Runtime fixes
12 lines
395 B
Plaintext
12 lines
395 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()
|
|
var/datum/log_viewer/LV = GLOB.open_logging_views[usr.client.ckey]
|
|
LV.show_ui(usr)
|