From 1b08c7a43ca56e772bc401fa612fcae8cf933c2d Mon Sep 17 00:00:00 2001 From: datlo Date: Thu, 31 Jan 2019 14:26:09 +0000 Subject: [PATCH] Unbreaks wingdings Jestosterone PR accidentally removed the check for wingdings mutation. this re-adds it. --- code/modules/mob/living/carbon/human/say.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index 2ea891d04f9..d0abb658333 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -125,6 +125,9 @@ || GetComponent(/datum/component/jestosterone)) span = "sans" + if(WINGDINGS in mutations) + span = "wingdings" + var/list/parent = ..() verb = parent["verb"]