Fully restores the functionality of audiovisual redirection

This commit is contained in:
deathride58
2022-06-03 14:31:12 -04:00
parent 218049e6f5
commit ce3fac30d6
4 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -138,7 +138,7 @@
return
hearers -= ignored_mobs
if(target_message && target && istype(target) && target.client)
if(target_message && target && istype(target) && (target.client || target.audiovisual_redirect))
hearers -= target
if(omni)
target.show_message(target_message)
@@ -155,7 +155,7 @@
if(self_message)
hearers -= src
for(var/mob/M in hearers)
if(!M.client)
if(!M.client && !M.audiovisual_redirect)
continue
if(omni)
M.show_message(message)