Merge pull request #31 from joshiejack/patch-3

Fixing potential arrayoutofbounds exception
This commit is contained in:
WayofTime 2014-06-10 18:43:01 -04:00
commit 82f947b31b

View file

@ -91,7 +91,7 @@ public class NEIAlchemyRecipeHandler extends TemplateRecipeHandler {
}
ArrayList<ItemStack> orbs = new ArrayList<ItemStack>();
for(int i = recipe.getOrbLevel(); i <= bloodOrbs.size(); i++) {
for(int i = Math.max(0, recipe.getOrbLevel()); i <= bloodOrbs.size(); i++) {
ItemStack orb = new ItemStack(bloodOrbs.get(i - 1));
if(NEIServerUtils.areStacksSameTypeCrafting(orb, ingredient)) {
arecipes.add(new CachedAlchemyRecipe(recipe));