Remove hard Spout dependency. Sorry. Thanks Fetch!

This commit is contained in:
Eric Stokes 2011-08-21 12:10:18 -06:00
parent 5f88247810
commit 047e0d8001

View File

@ -273,7 +273,7 @@ public class MultiverseCore extends JavaPlugin implements LoggablePlugin {
this.commandHandler.registerCommand(new EnvironmentCommand(this));
this.commandHandler.registerCommand(new DebugCommand(this));
this.commandHandler.registerCommand(new SleepCommand(this));
this.commandHandler.registerCommand(new SpoutCommand(this));
}
@ -836,6 +836,7 @@ public class MultiverseCore extends JavaPlugin implements LoggablePlugin {
public void setSpout(SpoutManager spoutManager) {
this.spoutManager = spoutManager;
this.commandHandler.registerCommand(new SpoutCommand(this));
}
public SpoutManager getSpout() {