Skip to content

Commit

Permalink
add remaining fieldidentifiers cause why not
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Dec 9, 2023
1 parent 5206ae6 commit 2044ca1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/java/net/frozenblock/wilderwild/config/BlockConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 2044ca1

Please sign in to comment.