From eb519c11d85a9fafb98b25da4be68294190c2731 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Fri, 6 Nov 2015 15:50:15 -0500 Subject: [PATCH 1/2] Fixed punpun not getting his suit equiped correctly, thus not getting his sprite updated. --- code/modules/mob/living/carbon/human/npcs.dm | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/code/modules/mob/living/carbon/human/npcs.dm b/code/modules/mob/living/carbon/human/npcs.dm index 290c81723ee..53805117894 100644 --- a/code/modules/mob/living/carbon/human/npcs.dm +++ b/code/modules/mob/living/carbon/human/npcs.dm @@ -1,13 +1,13 @@ -/obj/item/clothing/under/punpun - name = "fancy uniform" - desc = "It looks like it was tailored for a monkey." - icon_state = "punpun" - item_color = "punpun" - species_restricted = list("Monkey") - -/mob/living/carbon/human/monkey/punpun/New() - ..() - spawn(1) - name = "Pun Pun" - real_name = name - w_uniform = new /obj/item/clothing/under/punpun(src) \ No newline at end of file +/obj/item/clothing/under/punpun + name = "fancy uniform" + desc = "It looks like it was tailored for a monkey." + icon_state = "punpun" + item_color = "punpun" + species_restricted = list("Monkey") + +/mob/living/carbon/human/monkey/punpun/New() + ..() + spawn(1) + name = "Pun Pun" + real_name = name + equip_to_slot(new /obj/item/clothing/under/punpun(src), slot_w_uniform) \ No newline at end of file From fd2bfbacbe2db52957b7139e96c62add130a426a Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Fri, 6 Nov 2015 15:52:26 -0500 Subject: [PATCH 2/2] fixed newline convention --- code/modules/mob/living/carbon/human/npcs.dm | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/code/modules/mob/living/carbon/human/npcs.dm b/code/modules/mob/living/carbon/human/npcs.dm index 53805117894..b66a0ee52ba 100644 --- a/code/modules/mob/living/carbon/human/npcs.dm +++ b/code/modules/mob/living/carbon/human/npcs.dm @@ -1,13 +1,13 @@ -/obj/item/clothing/under/punpun - name = "fancy uniform" - desc = "It looks like it was tailored for a monkey." - icon_state = "punpun" - item_color = "punpun" - species_restricted = list("Monkey") - -/mob/living/carbon/human/monkey/punpun/New() - ..() - spawn(1) - name = "Pun Pun" - real_name = name +/obj/item/clothing/under/punpun + name = "fancy uniform" + desc = "It looks like it was tailored for a monkey." + icon_state = "punpun" + item_color = "punpun" + species_restricted = list("Monkey") + +/mob/living/carbon/human/monkey/punpun/New() + ..() + spawn(1) + name = "Pun Pun" + real_name = name equip_to_slot(new /obj/item/clothing/under/punpun(src), slot_w_uniform) \ No newline at end of file