From d410c7c29512ef2dc393c48bde01337923cd3e1d Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 3 Dec 2016 12:34:49 +0100 Subject: [PATCH] I finally give in. Made the crusher quieter. --- .../ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java b/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java index d8af63ad7..d1f7af728 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java @@ -137,7 +137,7 @@ public class TileEntityGrinder extends TileEntityInventoryBase implements IButto } if(shouldPlaySound){ - this.world.playSound(null, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), SoundHandler.crusher, SoundCategory.BLOCKS, 0.15F, 1.0F); + this.world.playSound(null, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), SoundHandler.crusher, SoundCategory.BLOCKS, 0.025F, 1.0F); } } }