mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-02 04:10:42 +00: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
489 B
Plaintext
16 lines
489 B
Plaintext
/datum/admin_secret_item/admin_secret/show_law_changes
|
|
name = "Show law changes"
|
|
|
|
/datum/admin_secret_item/admin_secret/show_law_changes/name()
|
|
return "Show Last [length(lawchanges)] Law change\s"
|
|
|
|
/datum/admin_secret_item/admin_secret/show_law_changes/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/dat = span_bold("Showing last [length(lawchanges)] law changes.") + "<HR>"
|
|
for(var/sig in lawchanges)
|
|
dat += "[sig]<BR>"
|
|
user << browse(dat, "window=lawchanges;size=800x500")
|