ghosts don't get ambience cut off when changing areas (#87407)

## About The Pull Request
closes https://github.com/tgstation/tgstation/issues/85568
## Changelog
🆑 grungussuss
sound: ambience no longer gets cut off for ghosts
/🆑
This commit is contained in:
grungussuss
2024-10-24 14:50:49 +02:00
committed by GitHub
parent 7d1c42de3c
commit 95d1940ee1
+1 -1
View File
@@ -108,7 +108,7 @@ SUBSYSTEM_DEF(ambience)
/mob/proc/refresh_looping_ambience()
SIGNAL_HANDLER
if(!client) // If a tree falls in the woods.
if(!client || isobserver(client.mob)) // If a tree falls in the woods. sadboysuss: Don't refresh for ghosts, it sounds bad
return
var/area/my_area = get_area(src)