Minor fix.

This commit is contained in:
raoulvdberge
2018-09-20 23:08:27 +02:00
parent acfcbba7bc
commit 6a3a8e52d7

View File

@@ -346,7 +346,7 @@ public class CraftingTask implements ICraftingTask {
continue; continue;
} }
PossibleInputs possibleInputs = new PossibleInputs(inputs); PossibleInputs possibleInputs = new PossibleInputs(new ArrayList<>(inputs));
possibleInputs.sort(mutatedStorage, results); possibleInputs.sort(mutatedStorage, results);
ItemStack possibleInput = possibleInputs.get(); ItemStack possibleInput = possibleInputs.get();