Tg panel patch 2 (#8085)

Co-authored-by: Cadyn Bombaci <cadynspacetechguy@gmail.com>
This commit is contained in:
Kashargul
2024-05-15 13:42:13 +02:00
committed by GitHub
parent a63a919fcb
commit e28fa96705
264 changed files with 993 additions and 823 deletions

View File

@@ -1,5 +1,5 @@
/client/proc/air_report()
set category = "Debug"
set category = "Debug.Investigate" //CHOMPEdit
set name = "Show Air Report"
if(!master_controller || !air_master)
@@ -100,7 +100,7 @@
/client/proc/reload_admins()
set name = "Reload Admins"
set category = "Debug"
set category = "Debug.Server" //CHOMPEdit
if(!check_rights(R_SERVER)) return
@@ -110,7 +110,7 @@
/client/proc/reload_eventMs()
set name = "Reload Event Managers"
set category = "Debug"
set category = "Debug.Server" //CHOMPEdit
if(!check_rights(R_SERVER)) return
@@ -121,7 +121,7 @@
//todo:
/client/proc/jump_to_dead_group()
set name = "Jump to dead group"
set category = "Debug"
set category = "Debug.Game" //CHOMPEdit
/*
if(!holder)
to_chat(src, "Only administrators may use this command.")
@@ -143,7 +143,7 @@
/client/proc/kill_airgroup()
set name = "Kill Local Airgroup"
set desc = "Use this to allow manual manupliation of atmospherics."
set category = "Debug"
set category = "Debug.Dangerous" //CHOMPEdit
/*
if(!holder)
to_chat(src, "Only administrators may use this command.")
@@ -166,7 +166,7 @@
/client/proc/print_jobban_old()
set name = "Print Jobban Log"
set desc = "This spams all the active jobban entries for the current round to standard output."
set category = "Debug"
set category = "Debug.Investigate" //CHOMPEdit
to_chat(usr, "<b>Jobbans active in this round.</b>")
for(var/t in jobban_keylist)
@@ -175,7 +175,7 @@
/client/proc/print_jobban_old_filter()
set name = "Search Jobban Log"
set desc = "This searches all the active jobban entries for the current round and outputs the results to standard output."
set category = "Debug"
set category = "Debug.Investigate" //CHOMPEdit
var/job_filter = tgui_input_text(usr, "Contains what?","Job Filter")
if(!job_filter)