From 2de4e7ab003d5b1674d12525f5aefb1e57a49fa3 Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin Date: Sat, 5 Jun 2021 19:18:33 +0500 Subject: [PATCH] Fix scientist's sound mask. Same as https://github.com/ValveSoftware/halflife/issues/2982. --- dlls/scientist.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/scientist.cpp b/dlls/scientist.cpp index e679770a..e04fabea 100644 --- a/dlls/scientist.cpp +++ b/dlls/scientist.cpp @@ -761,6 +761,9 @@ int CScientist::ISoundMask( void ) { return bits_SOUND_WORLD | bits_SOUND_COMBAT | + bits_SOUND_CARCASS | + bits_SOUND_MEAT | + bits_SOUND_GARBAGE | bits_SOUND_DANGER | bits_SOUND_PLAYER; }