Move console log for update check to before we run the update checker.

version increase for development to next version.
This commit is contained in:
Nick Minkler 2014-05-23 22:41:35 -07:00
parent b9deb22737
commit b3783bb262
1 changed files with 1 additions and 1 deletions

View File

@ -172,8 +172,8 @@ public class Vault extends JavaPlugin {
public void run() {
if (getServer().getConsoleSender().hasPermission("vault.update") && getConfig().getBoolean("update-check", true)) {
try {
log.info("Checking for Updates ... ");
newVersion = updateCheck(currentVersion);
log.info("Checking for Updates:");
if (newVersion > currentVersion) {
log.warning("Stable Version: " + newVersionTitle + " is out!" + " You are still running version: " + currentVersionTitle);
log.warning("Update at: http://dev.bukkit.org/server-mods/vault");