Skip to content

Commit

Permalink
Update changelog + increase max crafting request size
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed May 21, 2016
1 parent 467cb6c commit 4a7190c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Refined Storage Changelog

### 0.6.10
**Bugfixes**
- Fixed Processing Patterns not working
- Fixed not being able to request more than 1 item at once
- Fixed crash with the Solderer
- Increased max crafting request size to 500

### 0.6.9
**Bugfixes**
- Fixed bug where machines wouldn't disconnect / connect when needed outside of chunk
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/refinedstorage/tile/TileController.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public int hashCode() {
public static final String NBT_CRAFTING_TASKS = "CraftingTasks";
public static final String NBT_DESC_ENERGY = "Energy";

public static final int MAX_CRAFTING_QUANTITY_PER_REQUEST = 100;
public static final int MAX_CRAFTING_QUANTITY_PER_REQUEST = 500;

private List<ItemGroup> itemGroups = new ArrayList<ItemGroup>();
private List<IStorage> storages = new ArrayList<IStorage>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,14 @@ public boolean update(TileController controller) {
return true;
}

public boolean onPushed(ItemStack inserted) {
public void onPushed(ItemStack inserted) {
for (int i = 0; i < pattern.getOutputs().length; ++i) {
if (!satisfied[i] && RefinedStorageUtils.compareStackNoQuantity(inserted, pattern.getOutputs()[i])) {
satisfied[i] = true;

return true;
return;
}
}

return false;
}

@Override
Expand Down

0 comments on commit 4a7190c

Please sign in to comment.