diff --git a/src/main/java/net/frozenblock/wilderwild/config/BlockConfig.java b/src/main/java/net/frozenblock/wilderwild/config/BlockConfig.java index f47e50070d..c3a1b1c586 100644 --- a/src/main/java/net/frozenblock/wilderwild/config/BlockConfig.java +++ b/src/main/java/net/frozenblock/wilderwild/config/BlockConfig.java @@ -98,57 +98,75 @@ public static BlockConfig getWithSync() { public static class BlockSoundsConfig { @UnsyncableEntry + @FieldIdentifier(identifier = "cactusSounds") public boolean cactusSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "claySounds") public boolean claySounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "coarseDirtSounds") public boolean coarseDirtSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "cobwebSounds") public boolean cobwebSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "deadBushSounds") public boolean deadBushSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "flowerSounds") public boolean flowerSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "saplingSounds") public boolean saplingSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "iceSounds") public boolean iceSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "frostedIceSounds") public boolean frostedIceSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "gravelSounds") public boolean gravelSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "leafSounds") public boolean leafSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "lilyPadSounds") public boolean lilyPadSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "mushroomBlockSounds") public boolean mushroomBlockSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "podzolSounds") public boolean podzolSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "reinforcedDeepslateSounds") public boolean reinforcedDeepslateSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "sandstoneSounds") public boolean sandstoneSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "sugarCaneSounds") public boolean sugarCaneSounds = true; @UnsyncableEntry + @FieldIdentifier(identifier = "witherRoseSounds") public boolean witherRoseSounds = true; } diff --git a/src/main/java/net/frozenblock/wilderwild/config/MiscConfig.java b/src/main/java/net/frozenblock/wilderwild/config/MiscConfig.java index b8f1ad1a2a..c4229561cd 100644 --- a/src/main/java/net/frozenblock/wilderwild/config/MiscConfig.java +++ b/src/main/java/net/frozenblock/wilderwild/config/MiscConfig.java @@ -76,17 +76,21 @@ public double getParticleWindIntensity() { public static class BiomeAmbienceConfig { @UnsyncableEntry + @FieldIdentifier(identifier = "deepDarkAmbience") public boolean deepDarkAmbience = true; @UnsyncableEntry + @FieldIdentifier(identifier = "dripstoneCavesAmbience") public boolean dripstoneCavesAmbience = true; @UnsyncableEntry + @FieldIdentifier(identifier = "lushCavesAmbience") public boolean lushCavesAmbience = true; } public static class BiomeMusicConfig { @UnsyncableEntry + @FieldIdentifier(identifier = "wilderForestMusic") public boolean wilderForestMusic = true; } }