Skip to content

Commit

Permalink
Fix FlatGeneratorConfig#Builder not copying the biome from a value
Browse files Browse the repository at this point in the history
  • Loading branch information
aromaa committed Oct 30, 2024
1 parent 6369896 commit 08a7c2c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public FlatGeneratorConfig.Builder reset() {

@Override
public FlatGeneratorConfig.Builder from(final FlatGeneratorConfig value) {
this.biome = value.biome();
this.layers.addAll(value.layers());
this.performDecoration = value.performDecoration();
this.populateLakes = value.populateLakes();
Expand Down

0 comments on commit 08a7c2c

Please sign in to comment.