From 74ecd392dfd338670dafe94242eaa9b3acb7a32a Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 16 Feb 2014 07:30:55 -0500 Subject: [PATCH] Fix Grey whitelist bug --- code/modules/mob/living/carbon/species.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/species.dm b/code/modules/mob/living/carbon/species.dm index 78deed1fa6e..c2bf362e6c9 100644 --- a/code/modules/mob/living/carbon/species.dm +++ b/code/modules/mob/living/carbon/species.dm @@ -206,7 +206,7 @@ primitive = /mob/living/carbon/monkey // TODO - flags = WHITELISTED | HAS_LIPS | HAS_UNDERWEAR | CAN_BE_FAT + flags = IS_WHITELISTED | HAS_LIPS | HAS_UNDERWEAR | CAN_BE_FAT // Both must be set or it's only a 45% chance of manifesting. default_mutations=list(M_REMOTE_TALK)