From b982bba1e669ceed29531ab70fe8a97721a801ee Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 29 Nov 2013 11:39:05 -0500 Subject: [PATCH] Moar debug tools for ponies --- code/modules/admin/verbs/debug.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 5c42b5ea9b0..2a704642af3 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -973,7 +973,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set name = "Debug Mob Lists" set desc = "For when you just gotta know" - switch(input("Which list?") in list("Players","Admins","Mobs","Living Mobs","Dead Mobs", "Clients")) + switch(input("Which list?") in list("Players","Admins","Mobs","Living Mobs","Dead Mobs", "Clients","Respawnable Mobs")) if("Players") usr << dd_list2text(player_list,",") if("Admins") @@ -986,3 +986,5 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that usr << dd_list2text(dead_mob_list,",") if("Clients") usr << dd_list2text(clients,",") + if("Respawnable Mobs") + usr << dd_list2text(respawnable_list,",")