diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Monster.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp index 53dc3aba5..004103d6e 100644 --- a/src/Mobs/Monster.cpp +++ b/src/Mobs/Monster.cpp @@ -398,7 +398,8 @@ void cMonster::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) auto SoundPitchMultiplier = 1.0f + (Random.RandReal(1.0f) - Random.RandReal(1.0f)) * 0.2f; auto SoundVolume = 1.0f; - if (GetMobType() == mtGhast) { + if (GetMobType() == mtGhast) + { // Ghasts are loud... SoundVolume = 10.0f; } |