From ac2e224afea611ce52e799a6b5badb1ba8e0e85d Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Thu, 8 Aug 2019 13:45:02 +0100 Subject: [PATCH] Make the machines louder so you can actually hear them. Fixes #1755 --- src/main/java/techreborn/init/ModSounds.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/init/ModSounds.java b/src/main/java/techreborn/init/ModSounds.java index d9f445740..131dabc6f 100644 --- a/src/main/java/techreborn/init/ModSounds.java +++ b/src/main/java/techreborn/init/ModSounds.java @@ -54,7 +54,7 @@ public class ModSounds { return; } world.playSound(null, blockEntity.getPos().getX(), blockEntity.getPos().getY(), - blockEntity.getPos().getZ(), ModSounds.MACHINE_RUN, SoundCategory.BLOCKS, 0.1F, 1F); + blockEntity.getPos().getZ(), ModSounds.MACHINE_RUN, SoundCategory.BLOCKS, 1F, 1F); } } }