Debug Mob Lists can now list frozen crew. (#10438)

This commit is contained in:
mikomyazaki
2020-11-05 11:31:12 +01:00
committed by GitHub
parent b5d36d64c9
commit b5da13702b
2 changed files with 44 additions and 1 deletions
+3 -1
View File
@@ -418,7 +418,7 @@
set name = "Debug Mob Lists"
set desc = "For when you just gotta know"
switch(input("Which list?") in list("Players","Staff","Mobs","Living Mobs","Dead Mobs", "Clients"))
switch(input("Which list?") in list("Players","Staff","Mobs","Living Mobs","Dead Mobs","Frozen Mobs","Clients"))
if("Players")
to_chat(usr, jointext(player_list,", "))
if("Staff")
@@ -429,6 +429,8 @@
to_chat(usr, jointext(living_mob_list,", "))
if("Dead Mobs")
to_chat(usr, jointext(dead_mob_list,", "))
if("Frozen Mobs")
to_chat(usr, jointext(frozen_crew,", "))
if("Clients")
to_chat(usr, jointext(clients,", "))