Fixed OpenComputers integration causing log spam when getting processing patterns. Fixes #2070
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
- Fixed bug where the Pattern Grid doesn't update it's output slot when manually configuring a crafting pattern (raoulvdberge)
|
||||
- Fixed network node scanning allowing multiple controllers in some cases (raoulvdberge)
|
||||
- Fixed OpenComputers integration not giving back a crafting task instance in the schedule task API (raoulvdberge)
|
||||
- Fixed OpenComputers integration causing log spam when getting processing patterns (raoulvdberge)
|
||||
|
||||
### 1.6.9
|
||||
- Fixed OpenComputers "unknown error" when using extract item API (raoulvdberge)
|
||||
|
@@ -13,7 +13,11 @@ public class ConverterCraftingPattern implements Converter {
|
||||
|
||||
output.put("outputs", pattern.getOutputs());
|
||||
output.put("inputs", pattern.getInputs());
|
||||
|
||||
if (!pattern.isProcessing()) {
|
||||
output.put("byproducts", pattern.getByproducts());
|
||||
}
|
||||
|
||||
output.put("processing", pattern.isProcessing());
|
||||
output.put("oredict", pattern.isOredict());
|
||||
}
|
||||
|
Reference in New Issue
Block a user