Updated for latest Bukkit thingy.

This commit is contained in:
sk89q
2011-04-01 16:18:40 -07:00
parent 63beba8cba
commit 5173e953b4
6 changed files with 44 additions and 34 deletions

View File

@@ -31,7 +31,6 @@ import org.bukkit.entity.Player;
import org.bukkit.event.Event.Priority;
import org.bukkit.event.Event;
import org.bukkit.event.Listener;
import org.bukkit.event.block.BlockListener;
import org.bukkit.event.player.PlayerListener;
import org.bukkit.plugin.java.JavaPlugin;
import com.sk89q.bukkit.migration.PermissionsResolverManager;
@@ -55,15 +54,15 @@ public class WorldEditPlugin extends JavaPlugin {
/**
* The server interface that all server-related API goes through.
*/
protected ServerInterface server;
private ServerInterface server;
/**
* Main WorldEdit instance.
*/
protected WorldEdit controller;
private WorldEdit controller;
/**
* Deprecated API.
*/
protected WorldEditAPI api;
private WorldEditAPI api;
/**
* Holds the configuration for WorldEdit.
@@ -226,15 +225,6 @@ public class WorldEditPlugin extends JavaPlugin {
return true;
}
/**
* Get a reference to the WorldEdit object.
*
* @return
*/
public WorldEdit getWorldEdit() {
return controller;
}
/**
* Gets the session for the player.
*
@@ -338,6 +328,24 @@ public class WorldEditPlugin extends JavaPlugin {
return new BukkitPlayer(this, this.server, player);
}
/**
* Get the server interface.
*
* @return
*/
public ServerInterface getServerInterface() {
return server;
}
/**
* Get WorldEdit.
*
* @return
*/
public WorldEdit getWorldEdit() {
return controller;
}
/**
* Gets the region selection for the player.
*