This commit is contained in:
Jeremy Wood 2012-10-31 08:31:07 -04:00
parent fe00aae7e3
commit d01ce71343
1 changed files with 1 additions and 2 deletions

View File

@ -266,6 +266,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
public void onEnable() {
this.messaging = new MVMessaging();
this.banker = new AllPay(this, LOG_TAG + " ");
this.vaultHandler = new VaultHandler(this);
// Load the defaultWorldGenerators
this.worldManager.getDefaultWorldGenerators();
@ -334,8 +335,6 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
this.initializeBuscript();
this.setupMetrics();
this.vaultHandler = new VaultHandler(this);
// Output a little snippet to show it's enabled.
Logging.config("Version %s (API v%s) Enabled - By %s", this.getDescription().getVersion(), PROTOCOL, getAuthors());
}