Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3d6cdec

Browse filesBrowse files
authored
[Admin] Makes the Admin verbs Less Shit (yogstation13#10425)
* Admin Verbs * Interner sound fix
1 parent 6b708f8 commit 3d6cdec
Copy full SHA for 3d6cdec

55 files changed

+240-241Lines changed: 240 additions & 241 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎code/_onclick/hud/movable_screen_objects.dm‎

Copy file name to clipboardExpand all lines: code/_onclick/hud/movable_screen_objects.dm
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
//Debug procs
5555
/client/proc/test_movable_UI()
56-
set category = "Debug"
56+
set category = "Misc.Server Debug"
5757
set name = "Spawn Movable UI Object"
5858

5959
var/obj/screen/movable/M = new()
@@ -72,7 +72,7 @@
7272

7373

7474
/client/proc/test_snap_UI()
75-
set category = "Debug"
75+
set category = "Misc.Server Debug"
7676
set name = "Spawn Snap UI Object"
7777

7878
var/obj/screen/movable/snap/S = new()
Collapse file

‎code/controllers/admin.dm‎

Copy file name to clipboardExpand all lines: code/controllers/admin.dm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/statclick)
3636

3737
// Debug verbs.
3838
/client/proc/restart_controller(controller in list("Master", "Failsafe"))
39-
set category = "Debug"
39+
set category = "Misc.Server Debug"
4040
set name = "Restart Controller"
4141
set desc = "Restart one of the various periodic loop controllers for the game (be careful!)"
4242

Collapse file

‎code/controllers/subsystem/events.dm‎

Copy file name to clipboardExpand all lines: code/controllers/subsystem/events.dm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ SUBSYSTEM_DEF(events)
100100
// REEEEEEEEE
101101
/client/proc/forceEvent()
102102
set name = "Trigger Event"
103-
set category = "Admin.Events"
103+
set category = "Misc"
104104

105105
if(!holder ||!check_rights(R_FUN))
106106
return
Collapse file

‎code/controllers/subsystem/explosions.dm‎

Copy file name to clipboardExpand all lines: code/controllers/subsystem/explosions.dm
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ SUBSYSTEM_DEF(explosions)
8282

8383
/client/proc/check_bomb_impacts()
8484
set name = "Check Bomb Impact"
85-
set category = "Debug"
85+
set category = "Misc.Server Debug"
8686

8787
var/newmode = alert("Use reactionary explosions?","Check Bomb Impact", "Yes", "No")
8888
var/turf/epicenter = get_turf(mob)
@@ -561,4 +561,4 @@ SUBSYSTEM_DEF(explosions)
561561
A.throw_at(throw_at, atom_throw_range, EXPLOSION_THROW_SPEED, quickstart = FALSE)
562562
cost_throwturf = MC_AVERAGE(cost_throwturf, TICK_DELTA_TO_MS(TICK_USAGE_REAL - timer))
563563

564-
currentpart = SSEXPLOSIONS_TURFS
564+
currentpart = SSEXPLOSIONS_TURFS
Collapse file

‎code/controllers/subsystem/garbage.dm‎

Copy file name to clipboardExpand all lines: code/controllers/subsystem/garbage.dm
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ SUBSYSTEM_DEF(garbage)
330330
#ifdef TESTING
331331

332332
/datum/verb/find_refs()
333-
set category = "Debug"
333+
set category = "Misc.Server Debug"
334334
set name = "Find References"
335335
set src in world
336336

@@ -382,7 +382,7 @@ SUBSYSTEM_DEF(garbage)
382382
SSgarbage.next_fire = world.time + world.tick_lag
383383

384384
/datum/verb/qdel_then_find_references()
385-
set category = "Debug"
385+
set category = "Misc.Server Debug"
386386
set name = "qdel() then Find References"
387387
set src in world
388388

@@ -391,7 +391,7 @@ SUBSYSTEM_DEF(garbage)
391391
find_references(TRUE)
392392

393393
/datum/verb/qdel_then_if_fail_find_references()
394-
set category = "Debug"
394+
set category = "Misc.Server Debug"
395395
set name = "qdel() then Find References if GC failure"
396396
set src in world
397397

Collapse file

‎code/controllers/subsystem/mapping.dm‎

Copy file name to clipboardExpand all lines: code/controllers/subsystem/mapping.dm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ GLOBAL_LIST_EMPTY(the_station_areas)
442442
//Manual loading of away missions.
443443
/client/proc/admin_away()
444444
set name = "Load Away Mission"
445-
set category = "Admin.Fun"
445+
set category = "Misc.Server Debug"
446446

447447
if(!holder ||!check_rights(R_FUN))
448448
return
Collapse file

‎code/datums/datumvars.dm‎

Copy file name to clipboardExpand all lines: code/datums/datumvars.dm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838

3939
/client/proc/debug_variables(datum/D in world)
40-
set category = "Debug"
40+
set category = "Misc.Server Debug"
4141
set name = "View Variables"
4242
//set src in world
4343
var/static/cookieoffset = rand(1, 9999) //to force cookies to reset after the round.
Collapse file

‎code/modules/admin/admin.dm‎

Copy file name to clipboardExpand all lines: code/modules/admin/admin.dm
+12-12Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
///////////////////////////////////////////////////////////////////////////////////////////////Panels
1919

2020
/datum/admins/proc/show_player_panel(mob/M in GLOB.mob_list)
21-
set category = "Admin.Game"
21+
set category = "Misc.Unused"
2222
set name = "Show Player Panel"
2323
set desc="Edit player (respawn, ban, heal, etc)"
2424

@@ -216,8 +216,8 @@
216216

217217

218218
/datum/admins/proc/access_news_network() //MARKER
219-
set category = "Admin.Fun"
220-
set name = "Access Newscaster Network"
219+
set category = "Admin.Round Interaction"
220+
set name = "Access Newscaster"
221221
set desc = "Allows you to view, add and edit news feeds."
222222

223223
if (!istype(src, /datum/admins))
@@ -524,7 +524,7 @@
524524
SSblackbox.record_feedback("tally", "admin_verb", 1, "End Round") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
525525

526526
/datum/admins/proc/announce()
527-
set category = "Special Verbs"
527+
set category = "Server.Global Messages"
528528
set name = "Announce"
529529
set desc="Announce your desires to the world"
530530
if(!check_rights(0))
@@ -539,7 +539,7 @@
539539
SSblackbox.record_feedback("tally", "admin_verb", 1, "Announce") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
540540

541541
/datum/admins/proc/set_admin_notice()
542-
set category = "Special Verbs"
542+
set category = "Admin"
543543
set name = "Set Admin Notice"
544544
set desc ="Set an announcement that appears to everyone who joins the server. Only lasts this round"
545545
if(!check_rights(0))
@@ -684,7 +684,7 @@
684684
SSticker.Reboot(delay = 100, force = TRUE)
685685

686686
/datum/admins/proc/unprison(mob/M in GLOB.mob_list)
687-
set category = "Admin"
687+
set category = "Admin.Player Interaction"
688688
set name = "Unprison"
689689
if (is_centcom_level(M.z))
690690
SSjob.SendToLateJoin(M)
@@ -697,7 +697,7 @@
697697
////////////////////////////////////////////////////////////////////////////////////////////////ADMIN HELPER PROCS
698698

699699
/datum/admins/proc/spawn_atom(object as text)
700-
set category = "Debug"
700+
set category = "Misc.Server Debug"
701701
set desc = "(atom path) Spawn an atom"
702702
set name = "Spawn"
703703

@@ -719,7 +719,7 @@
719719
SSblackbox.record_feedback("tally", "admin_verb", 1, "Spawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
720720

721721
/datum/admins/proc/podspawn_atom(object as text)
722-
set category = "Debug"
722+
set category = "Misc.Server Debug"
723723
set desc = "(atom path) Spawn an atom via supply drop"
724724
set name = "Podspawn"
725725

@@ -743,7 +743,7 @@
743743
SSblackbox.record_feedback("tally", "admin_verb", 1, "Podspawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
744744

745745
/datum/admins/proc/spawn_cargo(object as text)
746-
set category = "Debug"
746+
set category = "Misc.Server Debug"
747747
set desc = "(atom path) Spawn a cargo crate"
748748
set name = "Spawn Cargo"
749749

@@ -761,7 +761,7 @@
761761
SSblackbox.record_feedback("tally", "admin_verb", 1, "Spawn Cargo") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
762762

763763
/datum/admins/proc/show_traitor_panel(mob/M in GLOB.mob_list)
764-
set category = "Admin.Game"
764+
set category = "Admin.Player Interaction"
765765

766766
set desc = "Edit mobs's memory and role"
767767
set name = "Show Traitor Panel"
@@ -778,7 +778,7 @@
778778

779779

780780
/datum/admins/proc/toggletintedweldhelmets()
781-
set category = "Debug"
781+
set category = "Misc.Server Debug"
782782
set desc="Reduces view range when wearing welding helmets"
783783
set name="Toggle tinted welding helmes"
784784
GLOB.tinted_weldhelh = !( GLOB.tinted_weldhelh )
@@ -919,7 +919,7 @@
919919
user << browse(dat, "window=dyn_mode_options;size=900x650")
920920

921921
/datum/admins/proc/create_or_modify_area()
922-
set category = "Debug"
922+
set category = "Misc.Server Debug"
923923
set name = "Create or modify area"
924924
create_area(usr)
925925

Collapse file

‎code/modules/admin/admin_investigate.dm‎

Copy file name to clipboardExpand all lines: code/modules/admin/admin_investigate.dm
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/client/proc/investigate_show()
88
set name = "Investigate"
9-
set category = "Admin.Game"
9+
set category = "Admin"
1010
if(!holder)
1111
return
1212

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.