Skip to content

Commit

Permalink
Fix BiomeSpecialEffectsBuilder to copy backgroundMusicVolume (#1792)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciwhiz12 authored Dec 23, 2024
1 parent b71b520 commit 5a7d409
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static BiomeSpecialEffectsBuilder copyOf(BiomeSpecialEffects baseEffects)
baseEffects.getAmbientMoodSettings().ifPresent(builder::ambientMoodSound);
baseEffects.getAmbientAdditionsSettings().ifPresent(builder::ambientAdditionsSound);
baseEffects.getBackgroundMusic().ifPresent(builder::backgroundMusic);
builder.backgroundMusicVolume = baseEffects.getBackgroundMusicVolume();
return builder;
}

Expand Down

0 comments on commit 5a7d409

Please sign in to comment.