From f65581b1c8b61822bfb9e55134b06de99ac2e558 Mon Sep 17 00:00:00 2001 From: ccomp5950 Date: Thu, 21 Jan 2016 21:04:56 -0500 Subject: [PATCH] Fixes #10942 The portion that generates the list just performs a null check, not a length check. So we initialize it as null instead. --- code/modules/clothing/chameleon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/chameleon.dm b/code/modules/clothing/chameleon.dm index f1f916cd3cc..3dfc09201ca 100644 --- a/code/modules/clothing/chameleon.dm +++ b/code/modules/clothing/chameleon.dm @@ -299,7 +299,7 @@ item_state = "glasses" desc = "It looks like a plain set of mesons, but on closer inspection, it seems to have a small dial inside." origin_tech = list(TECH_ILLEGAL = 3) - var/list/clothing_choices = list() + var/list/global/clothing_choices /obj/item/clothing/glasses/chameleon/New() ..()