harry
2025-03-26 21:41:18 +00:00
committed by GitHub
parent 1bc5abd623
commit 04bc9fbd13
73 changed files with 777 additions and 312 deletions
+19 -3
View File
@@ -413,7 +413,7 @@
dellog += "</ol>"
usr << browse(dellog.Join(), "window=dellog")
usr << browse(HTML_SKELETON(dellog.Join()), "window=dellog")
/**
* Same as `cmd_display_del_log`, but only shows harddels
@@ -454,14 +454,14 @@
dellog += "</ol>"
usr << browse(dellog.Join(), "window=harddellog")
usr << browse(HTML_SKELETON(dellog.Join()), "window=harddellog")
/client/proc/cmd_display_init_log()
set category = "Debug"
set name = "Display Initialize() Log"
set desc = "Displays a list of things that didn't handle Initialize() properly"
usr << browse(replacetext(SSatoms.InitLog(), "\n", "<br>"), "window=initlog")
usr << browse(HTML_SKELETON(replacetext(SSatoms.InitLog(), "\n", "<br>")), "window=initlog")
/client/proc/reload_nanoui_resources()
set category = "Debug"
@@ -499,3 +499,19 @@
for(var/atom/an_atom in world)
if(world.tick_usage > (100+(tick_offenses+jitter_this_run)))
stoplag()
/client/proc/allow_browser_inspect()
set category = "Debug"
set name = "Allow Browser Inspect"
set desc = "Allow browser debugging via inspect"
if(!check_rights(R_DEBUG) || !isclient(src))
return
if(byond_version < 516)
to_chat(src, SPAN_WARNING("You can only use this on 516!"))
return
to_chat(src, SPAN_INFO("You can now right click to use inspect on browsers."))
winset(src, null, list("browser-options" = "+devtools"))
winset(src, null, list("browser-options" = "+find"))
+2 -2
View File
@@ -39,7 +39,7 @@
Tile Update: [SSair.tiles_to_update.len]<BR>
"}
usr << browse(output,"window=airreport")
usr << browse(HTML_SKELETON(output), "window=airreport")
/client/proc/fix_next_move()
set category = "Debug"
@@ -95,7 +95,7 @@
else
output += "&nbsp;&nbsp;&nbsp;&nbsp;[device]<br>"
usr << browse(output,"window=radioreport")
usr << browse(HTML_SKELETON(output), "window=radioreport")
feedback_add_details("admin_verb","RR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/reload_admins()
+1 -1
View File
@@ -101,7 +101,7 @@ GLOBAL_VAR_INIT(intercom_range_display_status, 0)
if(!window_check)
output += "<li><font color='red'>Camera not connected to wall at \[[C1.x], [C1.y], [C1.z]\] ([C1.loc.loc]) Network: [C1.network]</color></li>"
output += "</ul>"
usr << browse(output,"window=airreport;size=1000x500")
usr << browse(HTML_SKELETON(output), "window=airreport;size=1000x500")
feedback_add_details("admin_verb","mCRP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/intercom_view()
+1 -1
View File
@@ -70,7 +70,7 @@
to_chat(src, "Some accounts did not have proper ages set in their clients. This function requires database to be present")
if(msg != "")
src << browse(msg, "window=Player_age_check")
src << browse(HTML_SKELETON(msg), "window=Player_age_check")
else
to_chat(src, "No matches for that age range found.")