Fix for uninitialized War singleton when using reload when switching over to new War version.

This commit is contained in:
taoneill 2011-07-17 19:42:20 -04:00
parent b1c09b564e
commit 354955c04e

View File

@ -83,11 +83,11 @@ public class War extends JavaPlugin {
public War() {
super();
War.war = this;
}
public void onEnable() {
War.war = this;
this.loadWar();
}