Yay for tests that use method names in strings. -.-

This commit is contained in:
Jeremy Wood 2020-06-13 01:33:22 -04:00 committed by Jeremy Wood
parent 3fa2bfa7cf
commit b3f23278b1
1 changed files with 5 additions and 2 deletions

View File

@ -331,8 +331,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
getServer().getPluginManager().registerEvents(this.chatListener, this);
this.initializeBuscript();
MetricsConfigurator.configureMetrics(this);
this.setupMetrics();
// Output a little snippet to show it's enabled.
Logging.config("Version %s (API v%s) Enabled - By %s", this.getDescription().getVersion(), PROTOCOL, getAuthors());
@ -343,6 +342,10 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
}
}
private void setupMetrics() {
MetricsConfigurator.configureMetrics(this);
}
/**
* Initializes the buscript javascript library.
*/