Skip to content

Commit

Permalink
TGS Test Merge (#6067)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blue authored and Blue committed Oct 14, 2023
2 parents 72660ad + 837dbd2 commit 5f5e953
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -448,19 +448,19 @@ 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(message, verb, language, src)
M.hear_signlang(src, message, verb, language)

//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(message, verb, language, src)
M.hear_signlang(src, message, verb, language)
var/list/objs = potentials["objs"]
for(var/hearer in objs)
var/obj/O = hearer
O.hear_signlang(message, verb, language, src)
O.hear_signlang(src, message, verb, language)
return 1

/obj/effect/speech_bubble
Expand Down

0 comments on commit 5f5e953

Please sign in to comment.