This commit is contained in:
Daniel Mills 2020-01-21 18:49:57 -05:00
parent ca21758889
commit c212bc294b
2 changed files with 2 additions and 21 deletions

View File

@ -11,8 +11,8 @@ public class Settings
public static class PerformanceSettings
{
public PerformanceMode performanceMode = PerformanceMode.HALF_CPU;
public ObjectMode objectMode = ObjectMode.PARALLAX;
public PerformanceMode performanceMode = PerformanceMode.DOUBLE_CPU;
public ObjectMode objectMode = ObjectMode.NONE;
public boolean fastMode = false;
public int threadPriority = Thread.MAX_PRIORITY;
public int threadCount = 4;

View File

@ -324,25 +324,6 @@ public class IrisGenerator extends ParallaxWorldGenerator
@Override
public Biome onGenColumn(int wxxf, int wzxf, int x, int z, ChunkPlan plan, AtomicChunkData data, boolean surfaceOnly)
{
/////////////////////////
if(false)
{
int height = 64;
int girth = 3;
for(int j = 1; j < (girth * 2) + 1; j++)
{
int i = j > girth ? girth - j : j;
if(pg.hasBorder(12, i, wxxf, wzxf))
{
data.setBlock(x, height + j, z, Material.STAINED_GLASS, (byte) 15);
}
}
return Biome.VOID;
}
/////////////////////////
PrecisionStopwatch s = getMetrics().start();
if(disposed)
{