From 60f87cf53821524f37fa599e364791e6aad62b19 Mon Sep 17 00:00:00 2001 From: comma Date: Sun, 29 Jul 2012 19:30:07 +0400 Subject: [PATCH] Fix for admin rejuv breaking examine --- code/modules/mob/living/carbon/human/examine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 4c1413ba5ef..fb7a788e1a0 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -290,7 +290,7 @@ if(21 to INFINITY) wound_flavor_text["[temp.display_name]"] += pick(" a lot of burns"," severe melting") wound_flavor_text["[temp.display_name]"] += "!\n" - else if(temp.wound_descs.len) + else if(temp.wound_descs && temp.wound_descs.len) var/list/wound_descriptors = list() for(var/time in temp.wound_descs) for(var/wound in temp.wound_descs[time])