Skip to content

Commit

Permalink
fixes signlang (#6080)
Browse files Browse the repository at this point in the history
i really need to refactor saycode.
  • Loading branch information
silicons authored Oct 16, 2023
1 parent de1c555 commit 5983f9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -448,15 +448,15 @@ 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
var/list/potentials = get_mobs_and_objs_in_view_fast(T, world.view)
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
Expand Down

0 comments on commit 5983f9b

Please sign in to comment.