From 5983f9b9d0bee8b6e3c45f50982b48e520c21c5b Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 15 Oct 2023 17:00:07 -0700 Subject: [PATCH] fixes signlang (#6080) i really need to refactor saycode. --- code/modules/mob/living/say.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index a2271c4dbe0c..1a6aedd1030c 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -448,7 +448,7 @@ var/list/channel_to_radio_key = new //We're in something, gesture to people inside the same thing if(loc != T) for(var/mob/M in loc) - M.hear_signlang(src, message, verb, language) + M.hear_signlang(message, verb, language, src) //We're on a turf, gesture to visible as if we were a normal language else @@ -456,7 +456,7 @@ var/list/channel_to_radio_key = new var/list/mobs = potentials["mobs"] for(var/hearer in mobs) var/mob/M = hearer - M.hear_signlang(src, message, verb, language) + M.hear_signlang(message, verb, language, src) var/list/objs = potentials["objs"] for(var/hearer in objs) var/obj/O = hearer