mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Adds debug verb for pooling (#9966)
* Adds debug verb for pooling I think pooling is a thing that has very few bugs due to the way I've simplified it to the extreme and thus this debug verb in an ideal world shouldn't be needed. But we don't live in an ideal world as you can clearly see http://www.byond.com/forum/?post=2080853 This lets you view all the stored variables for a pooled variable type (assuming it has already been pooled at least once) * Improved about 300% * Fuck I'm so high
This commit is contained in:
@@ -151,6 +151,7 @@ var/list/admin_verbs_server = list(
|
||||
)
|
||||
var/list/admin_verbs_debug = list(
|
||||
/client/proc/gc_dump_hdl,
|
||||
/client/proc/debug_pooling,
|
||||
/client/proc/getSchedulerContext,
|
||||
/client/proc/cmd_admin_list_open_jobs,
|
||||
/proc/getbrokeninhands,
|
||||
@@ -280,7 +281,8 @@ var/list/admin_verbs_hideable = list(
|
||||
/client/proc/mob_list,
|
||||
/proc/possess,
|
||||
/proc/release,
|
||||
/client/proc/gc_dump_hdl
|
||||
/client/proc/gc_dump_hdl,
|
||||
/client/proc/debug_pooling
|
||||
)
|
||||
var/list/admin_verbs_mod = list(
|
||||
/client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/
|
||||
|
||||
Reference in New Issue
Block a user