1.0.1 done

This commit is contained in:
Raoul Van den Berge
2016-09-13 16:24:10 +02:00
parent fc717a3331
commit 544a244d73
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,6 @@
- Fixed advanced tooltips showing in Grid when not configured to do so (raoulvdberge)
- Added "autocrafting mode" in Detector, to check if an item is being crafted. If no item is specified, it'll emit a signal if anything is crafting (raoulvdberge)
- Added an option for the Crafter to trigger autocrafting with a redstone signal (raoulvdberge)
- Increased crafting tasks per request cap to 1000 (raoulvdberge)
- Optimized crafting pattern loading (raoulvdberge)
- Updated to Forge 2084 (raoulvdberge)

View File

@@ -12,7 +12,7 @@ import refinedstorage.api.network.grid.IItemGridHandler;
import refinedstorage.api.storage.CompareUtils;
public class ItemGridHandler implements IItemGridHandler {
public static final int MAX_CRAFTING_PER_REQUEST = 1000;
public static final int MAX_CRAFTING_PER_REQUEST = 500;
private INetworkMaster network;