Some OC API changes.

- Removed getMissingItems() and getMissingFluids() functions from the OpenComputers integration, that info is now accessible through schedule(Fluid)Task(). If you just want to check if there are missing items/fluids but don't want to start an actual task, use the "canSchedule" parameter.
- Added fluid functions for the fluid autocrafting to the OpenComputers integration.
This commit is contained in:
raoulvdberge
2018-11-01 23:32:06 +01:00
parent f40cd21f27
commit 7e4423881e
6 changed files with 126 additions and 47 deletions

View File

@@ -7,6 +7,8 @@
- 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)
- Removed getMissingItems() and getMissingFluids() functions from the OpenComputers integration, that info is now accessible through schedule(Fluid)Task(). If you just want to check if there are missing items/fluids but don't want to start an actual task, use the "canSchedule" parameter (raoulvdberge)
- Added fluid functions for the fluid autocrafting to the OpenComputers integration (raoulvdberge)
### 1.6.9
- Fixed OpenComputers "unknown error" when using extract item API (raoulvdberge)