Fixed 'disable-craftings'

This commit is contained in:
Indyuce 2020-03-17 18:20:44 +01:00
parent 15dc8c73f3
commit e85a4d813a

View File

@ -29,7 +29,8 @@ public abstract class RecipeManager {
private final Set<LoadedRecipe> loadedRecipes = new HashSet<>();
public RecipeManager() {
load();
if (!MMOItems.plugin.getConfig().getBoolean("disable-craftings"))
load();
}
public abstract void load();