Files
Techbot121andMaia 145cd4c1ff Fix interaction sounds not working (#6053)
## About The Pull Request

the arguments for `SEND_SOUND` were switched, so even if a sound for an
interaction was set it would not work.

I have also changed it to use playsound instead (similarly to the
existing sound emotes see
[code/datums/emotes.dm:141](https://github.com/Bubberstation/Bubberstation/blob/master/code/datums/emotes.dm#L141))
that way it doesn't play at the default full volume (ouch) and would
sound as you expect it.
Only downside to this is that this would be audible to  ghosts as well.
I can just revert that change and just leave it at  
`SEND_SOUND(mob, sound(sound_cache, volume = 50))` if necessary.

while writing this pr I was thinking, maybe I could've also set vary to
true so the pitch changes as well, but I've not tested that yet and
maybe it actually sounds horrible.
## Why It's Good For The Game

If sounds are added to interactions, they would actually work.
## Proof Of Testing
<details>
<summary>Screenshots/Videos</summary>


https://github.com/user-attachments/assets/2cc8fe04-b6b5-4f21-8cc3-bac1cf6309e0

</details>

## Changelog
🆑
fix: fixed interaction sounds not working (if there was one)
/🆑
2026-08-14 19:42:36 +02:00
..