Why is/was this "Multiverse-Adventure"...

This commit is contained in:
main() 2012-10-17 14:26:40 +02:00
parent d881908ecc
commit 0437a4bd92
1 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,6 @@ public abstract class MultiversePlugin extends JavaPlugin implements MVPlugin {
}
this.setCore(theCore);
// Turn on Logging
this.getServer().getLogger().info(String.format("%s - Version %s enabled - By %s",
this.getDescription().getName(), this.getDescription().getVersion(), getAuthors()));
getDataFolder().mkdirs();
@ -59,7 +58,7 @@ public abstract class MultiversePlugin extends JavaPlugin implements MVPlugin {
} catch (IOException e) {
e.printStackTrace();
}
debugLog = new DebugLog("Multiverse-Adventure", getDataFolder() + File.separator + "debug.log");
debugLog = new DebugLog(this.getDescription().getName(), getDataFolder() + File.separator + "debug.log");
debugLog.setTag(String.format("[%s-Debug]", this.getDescription().getName()));
this.onPluginEnable();