Constants changed to better world generation
This commit is contained in:
@@ -2,11 +2,13 @@ package mc.world.generated_world;
|
|||||||
|
|
||||||
public final class WorldConstants {
|
public final class WorldConstants {
|
||||||
|
|
||||||
|
public static final boolean DEBUG_ENABLED = true;
|
||||||
|
|
||||||
public static final String CHUNK_FILE_NAME_TEMPLATE = "chunk_{0}_{1}_{2}.dat";
|
public static final String CHUNK_FILE_NAME_TEMPLATE = "chunk_{0}_{1}_{2}.dat";
|
||||||
public static final String BIOME_FILE_NAME_TEMPLATE = "biomes.dat";
|
public static final String BIOME_FILE_NAME_TEMPLATE = "biomes.dat";
|
||||||
public static final String REGION_FILE_NAME_TEMPLATE = "r.{0}.{1}";
|
public static final String REGION_FILE_NAME_TEMPLATE = "r.{0}.{1}";
|
||||||
|
|
||||||
public static final int WORLD_MIN_HEIGHT = 28;
|
public static final int WORLD_MIN_HEIGHT = 36;
|
||||||
public static final int WORLD_SEA_LEVEL = 64;
|
public static final int WORLD_SEA_LEVEL = 64;
|
||||||
public static final int WORLD_MAX_HEIGHT = 128;
|
public static final int WORLD_MAX_HEIGHT = 128;
|
||||||
public static final int WORLD_REGION_SIZE = 256;
|
public static final int WORLD_REGION_SIZE = 256;
|
||||||
@@ -15,8 +17,8 @@ public final class WorldConstants {
|
|||||||
public static final int WORLD_MAX_WETNESS = 100;
|
public static final int WORLD_MAX_WETNESS = 100;
|
||||||
public static final int WORLD_BASE_WETNESS = 80;
|
public static final int WORLD_BASE_WETNESS = 80;
|
||||||
|
|
||||||
public static final double WORLD_LAND_SIZE = 53.0;
|
public static final double WORLD_LAND_SIZE = 63.03;
|
||||||
public static final double WORLD_LAKE_SIZE = 6.0;
|
public static final double WORLD_LAKE_SIZE = 9.3;
|
||||||
public static final double WORLD_WET_SEA_PERCENT = 0.8;
|
public static final double WORLD_WET_SEA_PERCENT = 0.8;
|
||||||
public static final double WORLD_TEMPERATURE_SIZE = 41.0;
|
public static final double WORLD_TEMPERATURE_SIZE = 41.0;
|
||||||
public static final double WORLD_TEMPERATURE_ZONE_SIZE = 2.99;
|
public static final double WORLD_TEMPERATURE_ZONE_SIZE = 2.99;
|
||||||
|
|||||||
Reference in New Issue
Block a user