mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-28 21:48:27 +01:00
Fixed
This commit is contained in:
parent
a5df509fdf
commit
33603d3605
@ -7,6 +7,7 @@ import java.util.logging.Logger;
|
|||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.bukkit.World.Environment;
|
import org.bukkit.World.Environment;
|
||||||
|
import org.bukkit.craftbukkit.CraftWorld;
|
||||||
import org.bukkit.util.config.Configuration;
|
import org.bukkit.util.config.Configuration;
|
||||||
|
|
||||||
import com.onarandombox.utils.stringLocation;
|
import com.onarandombox.utils.stringLocation;
|
||||||
@ -19,8 +20,6 @@ public class MVWorld {
|
|||||||
|
|
||||||
public World world; // The World Instance.
|
public World world; // The World Instance.
|
||||||
public Environment environment; // Hold the Environment type EG Environment.NETHER / Environment.NORMAL
|
public Environment environment; // Hold the Environment type EG Environment.NETHER / Environment.NORMAL
|
||||||
public Location spawn; // Location of the Spawn Point.
|
|
||||||
public Double compression; //How stretched/compressed distances are
|
|
||||||
|
|
||||||
public String name; // The Worlds Name, EG its folder name.
|
public String name; // The Worlds Name, EG its folder name.
|
||||||
public String alias = ""; // Short Alias for the World, this will be used in Chat Prefixes.
|
public String alias = ""; // Short Alias for the World, this will be used in Chat Prefixes.
|
||||||
@ -36,40 +35,38 @@ public class MVWorld {
|
|||||||
public List<String> editBlacklist; // Contain a list of Players/Groups which cannot edit this World. (Place/Destroy Blocks)
|
public List<String> editBlacklist; // Contain a list of Players/Groups which cannot edit this World. (Place/Destroy Blocks)
|
||||||
public List<String> worldBlacklist; // Contain a list of Worlds which Players cannot use to Portal to this World.
|
public List<String> worldBlacklist; // Contain a list of Worlds which Players cannot use to Portal to this World.
|
||||||
|
|
||||||
public MVWorld(World world, Configuration config, MultiVerseCore instance){
|
public Double compression; //How stretched/compressed distances are
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param handle - If the World was loaded by MultiVerse then this will be true and means we can do
|
||||||
|
* what we wan't with it else it's only here to be read from.
|
||||||
|
*/
|
||||||
|
public MVWorld(World world, Configuration config, MultiVerseCore instance, boolean handle){
|
||||||
this.config = config;
|
this.config = config;
|
||||||
this.plugin = instance;
|
this.plugin = instance;
|
||||||
|
|
||||||
this.world = world;
|
this.world = world;
|
||||||
this.name = world.getName();
|
this.name = world.getName();
|
||||||
|
|
||||||
this.alias = config.getString("worlds." + this.name + ".alias","");
|
|
||||||
|
|
||||||
this.environment = world.getEnvironment();
|
this.environment = world.getEnvironment();
|
||||||
|
|
||||||
this.spawn = getSpawn(this.config.getString("worlds." + name + ".spawn", "").split(":"));
|
// The following should already of been set when the World was created, so we don't wan't to overwrite these values we'll just grab them.
|
||||||
|
this.monsters = ((CraftWorld) world).getHandle().D = monsters; // TODO: Swap to Bukkit Function when implemented.
|
||||||
|
this.animals = ((CraftWorld) world).getHandle().E = animals; // TODO: Swap to Bukkit Function when implemented.
|
||||||
|
|
||||||
|
// If MultiVerse created/loaded the World then it means we wan't to handle it as well, otherwise
|
||||||
|
// we don't touch any settings unless the user specifically asks us to.
|
||||||
|
if(handle==true){
|
||||||
|
this.alias = config.getString("worlds." + this.name + ".alias","");
|
||||||
|
this.pvp = config.getBoolean("worlds." + this.name + ".pvp", true);
|
||||||
|
}
|
||||||
|
|
||||||
this.compression = config.getDouble("worlds." + this.name + ".compression", 1.0);
|
this.compression = config.getDouble("worlds." + this.name + ".compression", 1.0);
|
||||||
|
|
||||||
this.monsters = config.getBoolean("worlds." + this.name + ".monsters", true);
|
this.joinWhitelist = config.getStringList("worlds." + name + ".playerWhitelist", new ArrayList<String>());
|
||||||
this.animals = config.getBoolean("worlds." + this.name + ".animals", true);
|
this.joinBlacklist = config.getStringList("worlds." + name + ".playerBlacklist", new ArrayList<String>());
|
||||||
this.pvp = config.getBoolean("worlds." + this.name + ".pvp", true);
|
this.worldBlacklist = config.getStringList("worlds." + name + ".worldBlacklist", new ArrayList<String>());
|
||||||
|
this.blockBlacklist = config.getStringList("worlds." + name + ".blockBlacklist", new ArrayList<String>());
|
||||||
this.joinWhitelist = config.getStringList("worlds." + name + ".playerWhitelist", new ArrayList<String>());
|
this.editWhitelist = config.getStringList("worlds." + name + ".editWhitelist", new ArrayList<String>());
|
||||||
this.joinBlacklist = config.getStringList("worlds." + name + ".playerBlacklist", new ArrayList<String>());
|
this.editBlacklist = config.getStringList("worlds." + name + ".editBlacklist", new ArrayList<String>());
|
||||||
this.worldBlacklist = config.getStringList("worlds." + name + ".worldBlacklist", new ArrayList<String>());
|
|
||||||
this.blockBlacklist = config.getStringList("worlds." + name + ".blockBlacklist", new ArrayList<String>());
|
|
||||||
this.editWhitelist = config.getStringList("worlds." + name + ".editWhitelist", new ArrayList<String>());
|
|
||||||
this.editBlacklist = config.getStringList("worlds." + name + ".editBlacklist", new ArrayList<String>());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Location getSpawn(String[] spawn){
|
|
||||||
Location l = null;
|
|
||||||
|
|
||||||
if(spawn.length!=5){
|
|
||||||
return this.world.getSpawnLocation();
|
|
||||||
} else {
|
|
||||||
return new stringLocation().stringToLocation(world, spawn[0], spawn[1], spawn[2], spawn[3], spawn[4]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
@ -159,7 +159,7 @@ public class MultiVerseCore extends JavaPlugin {
|
|||||||
for (World world : lworlds){
|
for (World world : lworlds){
|
||||||
log.info(logPrefix + "Loading existing World - '" + world.getName() + "' - " + world.getEnvironment().toString()); // Output to the Log that wea re loading a world, specify the name and environment type.
|
log.info(logPrefix + "Loading existing World - '" + world.getName() + "' - " + world.getEnvironment().toString()); // Output to the Log that wea re loading a world, specify the name and environment type.
|
||||||
|
|
||||||
worlds.put(world.getName(), new MVWorld(world, MultiVerseCore.configWorlds, this)); // Place the World into the HashMap.
|
worlds.put(world.getName(), new MVWorld(world, MultiVerseCore.configWorlds, this, false)); // Place the World into the HashMap.
|
||||||
count++; // Increment the World Count.
|
count++; // Increment the World Count.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user