Improved /we version output for dev builds.

This commit is contained in:
TomyLobo 2011-11-02 17:10:07 +01:00
parent a51bc28756
commit 4c05050d73
2 changed files with 12 additions and 2 deletions

View File

@ -1409,4 +1409,8 @@ public class WorldEdit {
return version; return version;
} }
public static void setVersion(String version) {
WorldEdit.version = version;
}
} }

View File

@ -80,7 +80,13 @@ public class WorldEditPlugin extends JavaPlugin {
* Called on plugin enable. * Called on plugin enable.
*/ */
public void onEnable() { public void onEnable() {
logger.info("WorldEdit " + getDescription().getVersion() + " enabled."); final String pluginYmlVersion = getDescription().getVersion();
final String manifestVersion = WorldEdit.getVersion();
logger.info("WorldEdit " + pluginYmlVersion + " enabled.");
if (!manifestVersion.equalsIgnoreCase(pluginYmlVersion)) {
WorldEdit.setVersion(manifestVersion + " (" + pluginYmlVersion + ")");
}
// Make the data folders that WorldEdit uses // Make the data folders that WorldEdit uses
getDataFolder().mkdirs(); getDataFolder().mkdirs();