Merge branch 'master' of github.com:Multiverse/Multiverse-Core

This commit is contained in:
Eric Stokes 2011-10-09 11:43:13 -06:00
commit e0f9344d20
2 changed files with 9 additions and 7 deletions

View File

@ -63,7 +63,14 @@ public interface MVWorldManager {
* @return True if success, false if failure.
*/
public boolean loadWorld(String name);
/**
* Removes all players from the specified world.
*
* @param name World to remove players from.
*/
public void removePlayersFromWorld(String name);
/**
* Test if a given chunk generator is valid.
*

View File

@ -254,12 +254,7 @@ public class WorldManager implements MVWorldManager {
return this.plugin.getServer().unloadWorld(name, safely);
}
/**
* Removes all players from the specified world.
*
* @param name World to remove players from.
*/
private void removePlayersFromWorld(String name) {
public void removePlayersFromWorld(String name) {
World w = this.plugin.getServer().getWorld(name);
if (w != null) {
World safeWorld = this.plugin.getServer().getWorlds().get(0);