Skip to content

Commit

Permalink
Update admin_logs.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons authored Jun 25, 2023
1 parent 73aa107 commit 6bd4eb3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/admin/secrets/admin_secrets/admin_logs.dm
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// todo: literally nuke all of this what the fuck why is this not just get-current-logs or better, individual logs

/datum/admin_secret_item/admin_secret/admin_logs
name = "Admin Logs"

/datum/admin_secret_item/admin_secret/admin_logs/execute(var/mob/user)
. = ..()
if(!.)
return
var/dat = "<B>Admin Log<HR></B>"
var/list/dat = "<B>Admin Log<HR></B>"
for(var/l in admin_log)
dat += "<li>[l]</li>"
if(!admin_log.len)
Expand All @@ -25,7 +27,7 @@
. = ..()
if(!.)
return
var/dat = "<B>Dialogue Log<HR></B>"
var/list/dat = "<B>Dialogue Log<HR></B>"

dat += "<fieldset style='border: 2px solid white; display: inline'>"

Expand Down

0 comments on commit 6bd4eb3

Please sign in to comment.