Display API version, fix difficulty enums missing

This commit is contained in:
Eric Stokes 2011-10-08 14:59:47 -06:00
parent ff47610424
commit 5e0903086e
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
}
this.banker = new AllPay(this, tag + " ");
// Output a little snippet to show it's enabled.
this.log(Level.INFO, "- Version " + this.getDescription().getVersion() + " Enabled - By " + getAuthors());
this.log(Level.INFO, "- Version " + this.getDescription().getVersion() + " (API v" + Protocol + ") Enabled - By " + getAuthors());
this.checkServerProps();
this.registerEvents();

View File

@ -13,5 +13,5 @@ package com.onarandombox.MultiverseCore.enums;
* @author fernferret
*/ // Color == Aliascolor
public enum SetProperties {
alias, animals, monsters, pvp, scaling, aliascolor, color, respawn, currency, curr, price, scale, spawnmemory, memory, weather, storm, gamemode, mode, hunger
alias, animals, monsters, pvp, scaling, aliascolor, color, respawn, currency, curr, price, scale, spawnmemory, memory, weather, storm, gamemode, mode, hunger, difficulty, diff
}