Remote Canisters (#10563)

This commit is contained in:
Geeves
2020-11-22 10:57:16 +01:00
committed by GitHub
parent 7b43c0d991
commit 7af7d3187b
14 changed files with 131 additions and 30 deletions
+1
View File
@@ -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*/
+13
View File
@@ -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()