Cache clearing

This commit is contained in:
paulevsGitch 2021-07-09 01:51:26 +03:00
parent 3086f6181b
commit 86a37e5770

View file

@ -39,6 +39,7 @@ public class TerrainGenerator {
smallIslands = new IslandLayer(random.nextInt(), GeneratorOptions.smallOptions);
noise1 = new OpenSimplexNoise(random.nextInt());
noise2 = new OpenSimplexNoise(random.nextInt());
TERRAIN_BOOL_CACHE_MAP.clear();
}
public static void fillTerrainDensity(double[] buffer, int x, int z, BiomeSource biomeSource) {