From 1737a0aeb55e4c1198b34ad73062ba265a0b2ee5 Mon Sep 17 00:00:00 2001 From: TotallyNotADog <66381600+TotallyNotADog@users.noreply.github.com> Date: Mon, 24 Jan 2022 01:44:34 -0600 Subject: [PATCH] missed a ? runtimes will ensue without it --- 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 28687d297..b9da55e0c 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -331,7 +331,7 @@ var/obj/item/organ/vocal_cords/Vc = user.getorganslot(ORGAN_SLOT_VOICE) if(Vc) if(istype(Vc, /obj/item/organ/vocal_cords/velvet)) - if(client.prefs.cit_toggles & HYPNO) + if(client?.prefs.cit_toggles & HYPNO) msg += "You feel your chords resonate looking at them.\n"