Minor cleanup
This commit is contained in:
parent
c1f5b65cf5
commit
aa103e28da
1 changed files with 6 additions and 2 deletions
|
@ -194,9 +194,13 @@ public class MetallurgicInfuserRecipeHandler extends BaseRecipeHandler
|
|||
{
|
||||
arecipes.add(new CachedIORecipe(irecipe, getInfuseStacks(((InfusionInput)irecipe.getKey()).infusionType), ((InfusionInput)irecipe.getKey()).infusionType));
|
||||
}
|
||||
|
||||
List<ItemStack> infuses;
|
||||
for(ItemStack stack : getInfuseStacks(((InfusionInput)irecipe.getKey()).infusionType)) {
|
||||
if(NEIServerUtils.areStacksSameTypeCrafting(stack, ingredient)) {
|
||||
|
||||
for(ItemStack stack : getInfuseStacks(((InfusionInput)irecipe.getKey()).infusionType))
|
||||
{
|
||||
if(NEIServerUtils.areStacksSameTypeCrafting(stack, ingredient))
|
||||
{
|
||||
infuses = new ArrayList<ItemStack>();
|
||||
infuses.add(stack);
|
||||
arecipes.add(new CachedIORecipe(irecipe, infuses, ((InfusionInput)irecipe.getKey()).infusionType));
|
||||
|
|
Loading…
Reference in a new issue