[MIRROR] First part of a span rework (#9120)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
CHOMPStation2
2024-10-02 07:25:48 -07:00
committed by GitHub
parent 07c3627fbf
commit 31407a0be3
241 changed files with 1108 additions and 1081 deletions

View File

@@ -587,17 +587,17 @@
switch(tgui_input_list(usr, "Which list?", "List Choice", list("Players","Admins","Mobs","Living Mobs","Dead Mobs", "Clients")))
if("Players")
to_chat(usr, span("filter_debuglogs", jointext(player_list,",")))
to_chat(usr, span_filter_debuglogs(jointext(player_list,",")))
if("Admins")
to_chat(usr, span("filter_debuglogs", jointext(GLOB.admins,",")))
to_chat(usr, span_filter_debuglogs(jointext(GLOB.admins,",")))
if("Mobs")
to_chat(usr, span("filter_debuglogs", jointext(mob_list,",")))
to_chat(usr, span_filter_debuglogs(jointext(mob_list,",")))
if("Living Mobs")
to_chat(usr, span("filter_debuglogs", jointext(living_mob_list,",")))
to_chat(usr, span_filter_debuglogs(jointext(living_mob_list,",")))
if("Dead Mobs")
to_chat(usr, span("filter_debuglogs", jointext(dead_mob_list,",")))
to_chat(usr, span_filter_debuglogs(jointext(dead_mob_list,",")))
if("Clients")
to_chat(usr, span("filter_debuglogs", jointext(GLOB.clients,",")))
to_chat(usr, span_filter_debuglogs(jointext(GLOB.clients,",")))
/client/proc/cmd_debug_using_map()
set category = "Debug.Investigate" //CHOMPEdit