From 532e8ef65db1cb49856889b9eaba2821277d5c97 Mon Sep 17 00:00:00 2001 From: "rastaf.zero@gmail.com" Date: Sun, 26 Jun 2011 12:00:17 +0000 Subject: [PATCH] Fixed typo in code. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1734 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/admin/verbs/debug.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index c71ebcf75ae..e3dec091720 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -436,7 +436,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that M.equip_if_possible(new /obj/item/clothing/under/pirate(M), M.slot_w_uniform) M.equip_if_possible(new /obj/item/clothing/shoes/brown(M), M.slot_shoes) M.equip_if_possible(new /obj/item/clothing/suit/space/pirate(M), M.slot_wear_suit) - M.equip_if_possible(new /obj/item/clothing/head/space/pirate(M), M.slot_head) + M.equip_if_possible(new /obj/item/clothing/head/helmet/space/pirate(M), M.slot_head) M.equip_if_possible(new /obj/item/clothing/glasses/eyepatch(M), M.slot_glasses) M.equip_if_possible(new /obj/item/weapon/sword/pirate(M), M.slot_r_hand)