mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user