Skip to content

Commit

Permalink
Generate beaches before trees to prevent weird placed trees
Browse files Browse the repository at this point in the history
Signed-off-by: narrowtux <narrow.m@gmail.com>
  • Loading branch information
narrowtux committed Feb 15, 2012
1 parent bdf8590 commit a2ba8fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class PlainBiome extends BiomeType {
ArrayList<Perlin> layers = new ArrayList<Perlin>();

public PlainBiome() {
super(new CaveDecorator(), new FlowerDecorator(), new GrassDecorator(), new PondDecorator(), new TreeDecorator(), new BeachDecorator());
super(new CaveDecorator(), new FlowerDecorator(), new GrassDecorator(), new PondDecorator(), new BeachDecorator(), new TreeDecorator());

layerCount.setOctaveCount(5);
heightMap.setOctaveCount(5);
Expand Down

0 comments on commit a2ba8fc

Please sign in to comment.