From 98a12ad82b1117a50ac9430de3a89c3d7174c8d9 Mon Sep 17 00:00:00 2001 From: Mloc Date: Thu, 16 May 2013 13:05:23 +0100 Subject: [PATCH] Fixed up BrokenInHands a little. Signed-off-by: Mloc --- code/modules/admin/verbs/BrokenInhands.dm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/code/modules/admin/verbs/BrokenInhands.dm b/code/modules/admin/verbs/BrokenInhands.dm index 6339d3c011..43f6d0b793 100644 --- a/code/modules/admin/verbs/BrokenInhands.dm +++ b/code/modules/admin/verbs/BrokenInhands.dm @@ -13,24 +13,24 @@ var/list/istates = J.IconStates() if(!Lstates.Find(O.icon_state) && !Lstates.Find(O.item_state)) if(O.icon_state) - text += "[O.type] WANTS IN LEFT HAND CALLED\n\"[O.icon_state]\".\n" + text += "[O.type] is missing left hand icon called \"[O.icon_state]\".\n" if(!Rstates.Find(O.icon_state) && !Rstates.Find(O.item_state)) if(O.icon_state) - text += "[O.type] WANTS IN RIGHT HAND CALLED\n\"[O.icon_state]\".\n" + text += "[O.type] is missing right hand icon called \"[O.icon_state]\".\n" if(O.icon_state) if(!istates.Find(O.icon_state)) - text += "[O.type] MISSING NORMAL ICON CALLED\n\"[O.icon_state]\" IN \"[O.icon]\"\n" - if(O.item_state) - if(!istates.Find(O.item_state)) - text += "[O.type] MISSING NORMAL ICON CALLED\n\"[O.item_state]\" IN \"[O.icon]\"\n" - text+="\n" + text += "[O.type] is missing normal icon called \"[O.icon_state]\" in \"[O.icon]\".\n" + //if(O.item_state) + // if(!istates.Find(O.item_state)) + // text += "[O.type] MISSING NORMAL ICON CALLED\n\"[O.item_state]\" IN \"[O.icon]\"\n" + //text+="\n" del(O) if(text) var/F = file("broken_icons.txt") fdel(F) F << text - world << "Completely successfully and written to [F]" + world << "Completeled successfully and written to [F]"