Skip to content

Commit

Permalink
Fix kit reloading (#1855)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcfe authored and drtshock committed Feb 17, 2018
1 parent 0d63485 commit fe7b609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Essentials/src/com/earth2me/essentials/Kits.java
Expand Up @@ -21,13 +21,13 @@ public class Kits implements IConf {
public Kits(final IEssentials essentials) {
config = new EssentialsConf(new File(essentials.getDataFolder(), "kits.yml"));
config.setTemplateName("/kits.yml");
config.load();

kits = _getKits();
reloadConfig();
}

@Override
public void reloadConfig() {
config.load();
kits = _getKits();
}

Expand Down

0 comments on commit fe7b609

Please sign in to comment.