Merge pull request #316 from TheSeven/patch-1

Fix ArrayIndexOutOfBoundsException in satisfiedInsertion
This commit is contained in:
Raoul
2016-09-04 19:33:00 +02:00
committed by GitHub

View File

@@ -23,7 +23,7 @@ public class CraftingTaskProcessing extends CraftingTask {
super(pattern);
this.satisfied = new boolean[pattern.getInputs().size()];
this.satisfiedInsertion = new boolean[pattern.getInputs().size()];
this.satisfiedInsertion = new boolean[pattern.getOutputs().size()];
this.checked = new boolean[pattern.getInputs().size()];
}