9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 02:29:14 +00:00
This commit is contained in:
Daniel Mills
2020-01-23 08:14:57 -05:00
parent 5d6348b83c
commit ea71474b62
5 changed files with 3 additions and 5 deletions

View File

@@ -7,7 +7,6 @@ import org.bukkit.ChatColor;
import org.bukkit.Chunk;
import org.bukkit.Location;
import org.bukkit.World;
import org.bukkit.block.Biome;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;

View File

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

View File

@@ -59,7 +59,6 @@ public class IrisGenerator extends ParallaxWorldGenerator
MB.of(Material.SMOOTH_BRICK, 3),
});
//@done
private boolean disposed;
private CNG scatter;
private CNG beach;

View File

@@ -47,7 +47,7 @@ public class GenObject
private int failures;
private int successes;
private String name = "?";
private final GMap<SBlockVector, MB> s;
private GMap<SBlockVector, MB> s;
private BlockVector mount;
private int mountHeight;
private BlockVector shift;