From df0fe76155e538c6815a3d3ed98d4fa709e89921 Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Wed, 30 Apr 2014 04:03:55 -0500 Subject: [PATCH] Ooops fix, "right_ear" should be "right ear". --- code/modules/mob/living/carbon/human/say.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index f5f61ff8668..9173a4af885 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -74,7 +74,7 @@ R.talk_into(src,message,null,verb,speaking) used_radios += r_ear - if("right_ear") + if("right ear") var/obj/item/device/radio/R var/has_radio = 0 if(r_ear && istype(r_ear,/obj/item/device/radio)) @@ -88,7 +88,7 @@ used_radios += R - if("left_ear") + if("left ear") var/obj/item/device/radio/R var/has_radio = 0 if(l_ear && istype(l_ear,/obj/item/device/radio))