diff options
| author | Ananasloll3 <147922534+Ananasloll3@users.noreply.github.com> | 2026-03-16 00:13:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-15 18:13:11 -0500 |
| commit | 0b0d74a63872b0dd983759a0267b3f7411cde073 (patch) | |
| tree | 269b91e09453227ce28f7f960dae3da038ddac37 /Minecraft.World/Bat.cpp | |
| parent | b27cb536a5278313a892e6b3e8a7c86aa66c668e (diff) | |
Fix audio volume levels for cows and bats (#1225)
Cow volume 0.4f to 1.f
Bat volume 0.1f to 0.8f
Diffstat (limited to 'Minecraft.World/Bat.cpp')
| -rw-r--r-- | Minecraft.World/Bat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/Bat.cpp b/Minecraft.World/Bat.cpp index 462fef57..3fa30ddb 100644 --- a/Minecraft.World/Bat.cpp +++ b/Minecraft.World/Bat.cpp @@ -30,7 +30,7 @@ void Bat::defineSynchedData() float Bat::getSoundVolume() { - return 0.1f; + return 0.8f; } float Bat::getVoicePitch() |
