mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Remote Canisters (#10563)
This commit is contained in:
@@ -30,6 +30,7 @@ var/list/admin_verbs_admin = list(
|
||||
/datum/admins/proc/access_news_network, /*allows access of newscasters*/
|
||||
/client/proc/giveruntimelog, /*allows us to give access to runtime logs to somebody*/
|
||||
/client/proc/getserverlog, /*allows us to fetch server logs (diary) for other days*/
|
||||
/client/proc/view_signal_log, /*allows admins to check the log of signaler uses*/
|
||||
/client/proc/jumptocoord, /*we ghost and jump to a coordinate*/
|
||||
/client/proc/Getmob, /*teleports a mob to our location*/
|
||||
/client/proc/Getkey, /*teleports a mob with a certain ckey to our location*/
|
||||
|
||||
@@ -78,3 +78,16 @@
|
||||
|
||||
|
||||
//Other log stuff put here for the sake of organisation
|
||||
|
||||
/client/proc/view_signal_log()
|
||||
set name = "View Signaler Log"
|
||||
set desc = "Use this to view who sent signaler signals to things."
|
||||
set category = "Admin"
|
||||
|
||||
var/text_signal_log = ""
|
||||
for(var/log in signal_log)
|
||||
text_signal_log += "[log]<br>"
|
||||
|
||||
var/datum/browser/signal_win = new(usr, "signallog", "Signal Log", 550, 500)
|
||||
signal_win.set_content(text_signal_log)
|
||||
signal_win.open()
|
||||
Reference in New Issue
Block a user