diff --git a/CHANGELOG.md b/CHANGELOG.md index cf264db79..f82427c6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ hi - Biome tags relating to entity variants are now placed in the `entity/variant` path, being in the `spawn` path prior. - Cleaned up code related to Termite handling. - Termite eating behaviors are now entirely data-generated, offering a simple way to achieve mod compatibility. +- Slightly decreased the pitch of Magma block sounds. # Moobloom Branch - Added Mooblooms diff --git a/src/main/java/net/frozenblock/wilderwild/registry/WWSoundTypes.java b/src/main/java/net/frozenblock/wilderwild/registry/WWSoundTypes.java index bd3664634..043fe9c1f 100644 --- a/src/main/java/net/frozenblock/wilderwild/registry/WWSoundTypes.java +++ b/src/main/java/net/frozenblock/wilderwild/registry/WWSoundTypes.java @@ -107,7 +107,7 @@ public final class WWSoundTypes { WWSounds.BLOCK_GEYSER_HIT, WWSounds.BLOCK_GEYSER_FALL ); - public static final SoundType MAGMA = new SoundType(1F, 1F, + public static final SoundType MAGMA = new SoundType(1F, 0.9F, WWSounds.BLOCK_MAGMA_BREAK, WWSounds.BLOCK_MAGMA_STEP, WWSounds.BLOCK_MAGMA_PLACE,