Skip to content

Commit

Permalink
Merge pull request #992 from galacticwarrior9/add-biomeeffects-getters
Browse files Browse the repository at this point in the history
  • Loading branch information
booky10 committed Sep 18, 2024
2 parents a1663f5 + 349b5dc commit f1d7d5a
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,18 @@ public Optional<Sound> getAmbientSound() {
return this.ambientSound;
}

public Optional<MoodSettings> getMoodSound() {
return this.moodSound;
}

public Optional<MusicSettings> getMusic() {
return this.music;
}

public Optional<AdditionsSettings> getAdditionsSound() {
return this.additionsSound;
}

@Override
public boolean equals(Object obj) {
if (this == obj) return true;
Expand Down

0 comments on commit f1d7d5a

Please sign in to comment.