Fix and add broken sprite list.

This commit is contained in:
Rob Nelson
2013-10-01 14:24:55 -07:00
parent 1317ceb082
commit 2fad4f5652
3 changed files with 2659 additions and 3 deletions

2653
broken_hand_icons.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -124,6 +124,7 @@ var/list/admin_verbs_server = list(
) )
var/list/admin_verbs_debug = list( var/list/admin_verbs_debug = list(
/client/proc/cmd_admin_list_open_jobs, /client/proc/cmd_admin_list_open_jobs,
/proc/getbrokeninhands,
/client/proc/Debug2, /client/proc/Debug2,
/client/proc/kill_air, /client/proc/kill_air,
/client/proc/cmd_debug_make_powernets, /client/proc/cmd_debug_make_powernets,

View File

@@ -1,4 +1,7 @@
/proc/getbrokeninhands() /proc/getbrokeninhands()
set name = "Broken Sprite List"
set category = "Debug"
var/icon/IL = new('icons/mob/items_lefthand.dmi') var/icon/IL = new('icons/mob/items_lefthand.dmi')
var/list/Lstates = IL.IconStates() var/list/Lstates = IL.IconStates()
var/icon/IR = new('icons/mob/items_righthand.dmi') var/icon/IR = new('icons/mob/items_righthand.dmi')
@@ -28,9 +31,8 @@
//text+="\n" //text+="\n"
del(O) del(O)
if(text) if(text)
var/F = file("broken_icons.txt") var/F = file("broken_hand_icons.txt")
fdel(F) fdel(F)
F << text F << text
world << "Completeled successfully and written to [F]" world << "Completed and written to [F]"