Skip to content

Commit 4c3bb3c

Browse files
committed
Balance knapping volume
1 parent f531785 commit 4c3bb3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/mod/acgaming/extrasounds/mixin/tfc/GuiKnappingMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ public void esKnappingPlayPressSound(GuiButton b1, SoundHandler soundHandler, Gu
2525
{
2626
if (type.equals(KnappingType.CLAY) || type.equals(KnappingType.FIRE_CLAY))
2727
{
28-
ESSoundManagerClient.playSoundPlayer(SoundEvents.BLOCK_GRAVEL_BREAK, 1.2F, 0.8F);
28+
ESSoundManagerClient.playSoundPlayer(SoundEvents.BLOCK_GRAVEL_BREAK, 1.2F, 0.6F);
2929
}
3030
else if (type.equals(KnappingType.STONE))
3131
{
3232
ESSoundManagerClient.playSoundPlayer(SoundEvents.BLOCK_STONE_BREAK, 2, 0.8F);
3333
}
3434
else if (type.equals(KnappingType.LEATHER))
3535
{
36-
ESSoundManagerClient.playSoundPlayer(SoundEvents.ITEM_ARMOR_EQUIP_LEATHER, 2, 0.8F);
36+
ESSoundManagerClient.playSoundPlayer(SoundEvents.ITEM_ARMOR_EQUIP_LEATHER, 2, 1);
3737
}
3838
else
3939
{

0 commit comments

Comments
 (0)