mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 02:32:10 +00:00
* Restyles Stat Panel, Adds Subpanel Sub-Categories (#53947) I re-styled the CSS for the stat panel in hopes to make it look nice, and I also added the ability to use sub-categories (currently a single level) of verbs using a . (period), an example being Admin.Fun instead of the previous Admin - Fun. This now results in a sub-category being automagically generated in the stat panel. * Restyles Stat Panel, Adds Subpanel Sub-Categories Co-authored-by: Bobbahbrown <bobbahbrown@gmail.com>
12 lines
422 B
Plaintext
12 lines
422 B
Plaintext
/datum/verbs/menu/Admin/Generate_list(client/C)
|
|
if (C.holder)
|
|
. = ..()
|
|
|
|
/datum/verbs/menu/Admin/verb/playerpanel()
|
|
set name = "Player Panel"
|
|
set desc = "Player Panel"
|
|
set category = "Admin.Game"
|
|
if(usr.client.holder)
|
|
usr.client.holder.player_panel_new()
|
|
SSblackbox.record_feedback("tally", "admin_verb", 1, "Player Panel New") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|