fixed environments

By: Tahg <tahgtahv@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2011-06-03 18:35:05 -04:00
parent d20f1b7bdc
commit 88299f417b

View file

@ -26,7 +26,7 @@ import org.bukkit.World;
public class CraftWorld implements World {
private final WorldServer world;
private final Environment environment;
private Environment environment;
private final CraftServer server;
private final ChunkProviderServer provider;
private HashMap<Integer,CraftChunk> unloadedChunks = new HashMap<Integer, CraftChunk>();
@ -37,12 +37,8 @@ public class CraftWorld implements World {
this.world = world;
this.server = world.getServer();
this.provider = world.chunkProviderServer;
if (world.worldProvider instanceof WorldProviderHell) {
environment = Environment.NETHER;
} else {
environment = Environment.NORMAL;
}
environment = Environment.getEnvironment(world.worldProvider.dimension);
server.addWorld(this);
}
@ -443,6 +439,13 @@ public class CraftWorld implements World {
public Environment getEnvironment() {
return environment;
}
public void setEnvironment(Environment env) {
if (environment != env) {
environment = env;
world.worldProvider = WorldProvider.a(environment.getId());
}
}
public Block getBlockAt(Location location) {
return getBlockAt(location.getBlockX(), location.getBlockY(), location.getBlockZ());