init potion ingredient lists in constructor

This commit is contained in:
nossr50 2019-02-26 20:22:30 -08:00
parent 53f06832f1
commit 714d9c0ca7

View File

@ -51,22 +51,35 @@ public class PotionConfig extends ConfigCollection {
/* INGREDIENTS */ /* INGREDIENTS */
private List<ItemStack> concoctionsIngredientsTierOne = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierOne;
private List<ItemStack> concoctionsIngredientsTierTwo = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierTwo;
private List<ItemStack> concoctionsIngredientsTierThree = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierThree;
private List<ItemStack> concoctionsIngredientsTierFour = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierFour;
private List<ItemStack> concoctionsIngredientsTierFive = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierFive;
private List<ItemStack> concoctionsIngredientsTierSix = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierSix;
private List<ItemStack> concoctionsIngredientsTierSeven = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierSeven;
private List<ItemStack> concoctionsIngredientsTierEight = new ArrayList<ItemStack>(); private List<ItemStack> concoctionsIngredientsTierEight;
private Map<String, AlchemyPotion> potionMap = new HashMap<String, AlchemyPotion>(); private Map<String, AlchemyPotion> potionMap = new HashMap<String, AlchemyPotion>();
public PotionConfig() { public PotionConfig() {
super(mcMMO.p.getDataFolder().getAbsoluteFile(), "potions.yml", true, true, true); super(mcMMO.p.getDataFolder().getAbsoluteFile(), "potions.yml", true, true, true);
initIngredientLists();
register(); register();
} }
private void initIngredientLists()
{
concoctionsIngredientsTierOne = new ArrayList<>();
concoctionsIngredientsTierTwo = new ArrayList<>();
concoctionsIngredientsTierThree = new ArrayList<>();
concoctionsIngredientsTierFour = new ArrayList<>();
concoctionsIngredientsTierFive = new ArrayList<>();
concoctionsIngredientsTierSix = new ArrayList<>();
concoctionsIngredientsTierSeven = new ArrayList<>();
concoctionsIngredientsTierEight = new ArrayList<>();
}
/** /**
* This grabs an instance of this config class from the Config Manager * This grabs an instance of this config class from the Config Manager
* This method is deprecated and will be removed in the future * This method is deprecated and will be removed in the future