mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
fixes some stupid flag requirements (#9598)
This commit is contained in:
@@ -805,7 +805,7 @@ var/global/floorIsLava = 0
|
|||||||
|
|
||||||
dat += "<BR>"
|
dat += "<BR>"
|
||||||
|
|
||||||
if(check_rights(R_DEBUG,0))
|
if(check_rights(R_FUN,0))
|
||||||
dat += {"
|
dat += {"
|
||||||
<B>Security Level Elevated</B><BR>
|
<B>Security Level Elevated</B><BR>
|
||||||
<BR>
|
<BR>
|
||||||
@@ -814,12 +814,15 @@ var/global/floorIsLava = 0
|
|||||||
<A href='?src=\ref[src];secretscoder=infinite_sec'>Remove cap on security officers</A><BR>
|
<A href='?src=\ref[src];secretscoder=infinite_sec'>Remove cap on security officers</A><BR>
|
||||||
<a href='?src=\ref[src];secretscoder=virus_custom'>Custom Virus Outbreak</a><BR>
|
<a href='?src=\ref[src];secretscoder=virus_custom'>Custom Virus Outbreak</a><BR>
|
||||||
<BR>
|
<BR>
|
||||||
<B>Coder Secrets</B><BR>
|
|
||||||
<BR>
|
|
||||||
<A href='?src=\ref[src];secretsadmin=list_job_debug'>Show Job Debug</A><BR>
|
|
||||||
<A href='?src=\ref[src];secretscoder=spawn_objects'>Admin Log</A><BR>
|
|
||||||
<BR>
|
|
||||||
"}
|
"}
|
||||||
|
dat += {"
|
||||||
|
<B>Coder Secrets</B><BR>
|
||||||
|
<BR>
|
||||||
|
<A href='?src=\ref[src];secretsadmin=list_job_debug'>Show Job Debug</A><BR>
|
||||||
|
<A href='?src=\ref[src];secretscoder=spawn_objects'>Admin Log</A><BR>
|
||||||
|
<BR>
|
||||||
|
"}
|
||||||
|
|
||||||
|
|
||||||
usr << browse(dat, "window=secrets")
|
usr << browse(dat, "window=secrets")
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ var/list/forbidden_varedit_object_types = list(
|
|||||||
else
|
else
|
||||||
L = list()
|
L = list()
|
||||||
|
|
||||||
var/list/locked = list("vars", "client", "firemut", "ishulk", "telekinesis", "xray", "virus", "viruses", "cuffed", "ka", "last_eaten", "urine", "poo", "icon", "icon_state")
|
var/list/locked = list("vars", "client")
|
||||||
var/list/names = sortList(L)
|
var/list/names = sortList(L)
|
||||||
|
|
||||||
var/variable = input("Which var?","Var") as null|anything in names + "(ADD VAR)"
|
var/variable = input("Which var?","Var") as null|anything in names + "(ADD VAR)"
|
||||||
|
|||||||
Reference in New Issue
Block a user