Made removePlayersFromWorld() visible from the API and moved the javadoc

This commit is contained in:
main() 2011-10-09 19:27:40 +02:00
parent 5e0903086e
commit 40c04a1f4e
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);