mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 21:53:22 +00:00
* Removes some code soul (`IF YOU ARE COPY PASTING THIS...`), replaces it with a macro (#79935) ## About The Pull Request Replaces all instances of `SSblackbox.record_feedback\("tally", "admin_verb", 1, (.+)\)` with `BLACKBOX_LOG_ADMIN_VERB($1)` This makes so the funny comment isn't necessary. It also reveals one location which someone did not heed the comment, the `debug_controller` proc copy+pasted the line but did not change the fourth argument. PEOPLE DON'T READ! * Removes some code soul (`IF YOU ARE COPY PASTING THIS...`), replaces it with a macro --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
12 lines
309 B
Plaintext
12 lines
309 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()
|
|
BLACKBOX_LOG_ADMIN_VERB("Player Panel New")
|