This commit is contained in:
Protected 2011-03-01 18:07:01 +00:00
commit 015daf1695
1 changed files with 6 additions and 1 deletions

View File

@ -157,7 +157,12 @@ public class MultiVerseCore extends JavaPlugin {
// You never know these days... bloody NPE's.
if(lworlds != null && lworlds.size()>0){
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.
// If it's the default world we should probably ignore outputting it as it will just be spam.
if((getServer().getWorlds().get(0).getName().equals(world.getName()))){
continue;
}
log.info(logPrefix + "Loading existing World - '" + world.getName() + "' - " + world.getEnvironment().toString()); // Output to the Log that we are loading a world, specify the name and environment type.
worlds.put(world.getName(), new MVWorld(world, MultiVerseCore.configWorlds, this, false)); // Place the World into the HashMap.
count++; // Increment the World Count.