mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 09:42:29 +00:00
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.
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!
|