mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 00:21:11 +01:00
NTIRC Communicators (#11658)
This commit is contained in:
@@ -305,11 +305,9 @@ proc/get_radio_key_from_channel(var/channel)
|
||||
INVOKE_ASYNC(GLOBAL_PROC, /proc/animate_speechbubble, speech_bubble, hear_clients, 30)
|
||||
do_animate_chat(message, speaking, italics, hear_clients, 30)
|
||||
|
||||
for(var/o in listening_obj)
|
||||
var/obj/O = o
|
||||
spawn(0)
|
||||
if(O) //It's possible that it could be deleted in the meantime.
|
||||
O.hear_talk(src, message, verb, speaking)
|
||||
for(var/obj/O as anything in listening_obj)
|
||||
if(O) //It's possible that it could be deleted in the meantime.
|
||||
INVOKE_ASYNC(O, /obj/.proc/hear_talk, src, message, verb, speaking)
|
||||
|
||||
if(mind)
|
||||
mind.last_words = message
|
||||
|
||||
Reference in New Issue
Block a user