mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
* next set of spans * some more * next * next * next * . * text... * next... rest soon * . * . * ok last set for the night * . * . * . * . * some more * next * next * all for now * . * some more easy ones * some more easy ones * . * . * some more bolds * oups auto complete moment * add the remaining spans * this as well * this as well * . * ., * resync them properly
16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
/datum/admin_secret_item/admin_secret/show_signalers
|
|
name = "Show Last Signalers"
|
|
|
|
/datum/admin_secret_item/admin_secret/show_signalers/name()
|
|
return "Show Last [length(lastsignalers)] Signaler\s"
|
|
|
|
/datum/admin_secret_item/admin_secret/show_signalers/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/dat = span_bold("Showing last [length(lastsignalers)] signalers.") + "<HR>"
|
|
for(var/sig in lastsignalers)
|
|
dat += "[sig]<BR>"
|
|
user << browse(dat, "window=lastsignalers;size=800x500")
|