From 0b0d74a63872b0dd983759a0267b3f7411cde073 Mon Sep 17 00:00:00 2001 From: Ananasloll3 <147922534+Ananasloll3@users.noreply.github.com> Date: Mon, 16 Mar 2026 00:13:11 +0100 Subject: Fix audio volume levels for cows and bats (#1225) Cow volume 0.4f to 1.f Bat volume 0.1f to 0.8f --- Minecraft.World/Cow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Minecraft.World/Cow.cpp') diff --git a/Minecraft.World/Cow.cpp b/Minecraft.World/Cow.cpp index 69628d64..0b959fc1 100644 --- a/Minecraft.World/Cow.cpp +++ b/Minecraft.World/Cow.cpp @@ -72,7 +72,7 @@ void Cow::playStepSound(int xt, int yt, int zt, int t) float Cow::getSoundVolume() { - return 0.4f; + return 1.f; } int Cow::getDeathLoot() -- cgit v1.2.3