The Crafter can now only store 1 stack size pattern per slot

This commit is contained in:
raoulvdberge
2017-10-29 22:08:02 +01:00
parent e54314512f
commit 4cced6b4ba
2 changed files with 9 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
# Refined Storage Changelog
### 1.5.22
- Added oredict, blocking, processing, ore inputs access to OpenComputers API (raoulvdberge)
- The Crafter can now only store 1 stack size pattern per slot (raoulvdberge)
### 1.5.21
- Updated Portuguese (Brazilian) translation (Pinz714)
- Fixed crash with External Storage (raoulvdberge)

View File

@@ -39,6 +39,11 @@ public class NetworkNodeCrafter extends NetworkNode implements ICraftingPatternC
network.getCraftingManager().rebuild();
}
}
@Override
public int getSlotLimit(int slot) {
return 1;
}
};
private List<ICraftingPattern> actualPatterns = new ArrayList<>();