Changed furthest island adaption search to 2048 blocks.

This commit is contained in:
Harrison Deng 2020-04-23 00:02:14 -05:00
parent e936dff934
commit 74f5d25dbc

View File

@ -37,7 +37,7 @@ public class BiomePerIslandGenerator implements IslandBiomeGenerator, Coordinate
this.biomeSelector = biomeSelector;
this.world = world;
this.temperatureMapGenerator.setSeed(world.getSeed());
dfs = new DepthFirstSearch(32, islandLocator);
dfs = new DepthFirstSearch(2048, islandLocator);
}
@Override