@ -5,11 +5,13 @@ import sun.misc.Unsafe;
public class Constants {
public class Constants {
public static boolean DISABLE_MODULO = false ,
public static boolean DISABLE_MODULO = false ,
USE_64BIT_PERLIN_GENERATOR = false ,
ENABLE_FRINGE_LAND = false ,
ENABLE_FRINGE_LAND = false ,
FLOAT_PERLIN_GENERATOR = false ,
FLOAT_PERLIN_GENERATOR = false ,
COMPILE_CHUNK_ASYNC = false ;
COMPILE_CHUNK_ASYNC = false ;
@Deprecated ( /* forRemoval = true */ )
public static boolean USE_64BIT_PERLIN_GENERATOR = false ;
static {
static {
Unsafe unsafe ;
Unsafe unsafe ;
try {
try {
@ -28,5 +30,8 @@ public class Constants {
} catch ( Throwable t ) {
} catch ( Throwable t ) {
throw new RuntimeException ( t ) ;
throw new RuntimeException ( t ) ;
}
}
if ( System . getProperty ( cls . getName ( ) + ".USE_64BIT_PERLIN_GENERATOR" ) ! = null ) {
System . err . println ( "USE_64BIT_PERLIN_GENERATOR is deprecated and will remove in future, Please consider use -Dnet.minecraft.src.NoiseGeneratorOctaves.noiseType=" + ( USE_64BIT_PERLIN_GENERATOR ? "long" : "int" ) + "Type" ) ;
}
}
}
}
}