don't access ConsoleCommandSender until after processes start running,

also fix if permissions get altered while server is running.
This commit is contained in:
Nick Minkler 2013-12-24 13:19:03 -08:00
parent 89dd252bf4
commit a64a341a35
1 changed files with 9 additions and 8 deletions

View File

@ -132,13 +132,13 @@ public class Vault extends JavaPlugin {
getCommand("vault-info").setExecutor(this);
getCommand("vault-convert").setExecutor(this);
getServer().getPluginManager().registerEvents(new VaultListener(), this);
if (getServer().getConsoleSender().hasPermission("vault.update")) {
// Schedule to check the version every 30 minutes for an update. This is to update the most recent
// version so if an admin reconnects they will be warned about newer versions.
this.getServer().getScheduler().runTaskTimerAsynchronously(this, new Runnable() {
// Schedule to check the version every 30 minutes for an update. This is to update the most recent
// version so if an admin reconnects they will be warned about newer versions.
this.getServer().getScheduler().runTaskTimerAsynchronously(this, new Runnable() {
@Override
public void run() {
@Override
public void run() {
if (getServer().getConsoleSender().hasPermission("vault.update")) {
try {
newVersion = updateCheck(currentVersion);
log.info("Vault version from web: " + newVersion);
@ -154,9 +154,10 @@ public class Vault extends JavaPlugin {
// ignore exceptions
}
}
}
}, 0, 432000);
}, 0, 432000);
}
// Load up the Plugin metrics
try {
metrics = new Metrics(this);