Removed snowy biomes from the list of special layered biomes.
This commit is contained in:
parent
3a86bd1a12
commit
5ddc11258c
@ -131,14 +131,13 @@ public class IslandWorldChunkGenerator extends ChunkGenerator implements Listene
|
||||
}
|
||||
|
||||
@Override
|
||||
public Location getFixedSpawnLocation(World world, Random random) {
|
||||
Location location = new Location(world, 0, 128, 0);
|
||||
return location;
|
||||
public boolean canSpawn(World world, int x, int z) {
|
||||
return islandMap.isLand(x, z);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canSpawn(World world, int x, int z) {
|
||||
return islandMap.isLand(x, z);
|
||||
public Location getFixedSpawnLocation(World world, Random random) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -40,7 +40,6 @@ public class WorldLayerShader {
|
||||
String biomeName = biome.toString().toLowerCase();
|
||||
return
|
||||
biomeName.contains("badlands") ||
|
||||
biomeName.contains("snowy") ||
|
||||
biomeName.contains("mountain");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user