The Crafter can now only store 1 stack size pattern per slot
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Refined Storage Changelog
|
# 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
|
### 1.5.21
|
||||||
- Updated Portuguese (Brazilian) translation (Pinz714)
|
- Updated Portuguese (Brazilian) translation (Pinz714)
|
||||||
- Fixed crash with External Storage (raoulvdberge)
|
- Fixed crash with External Storage (raoulvdberge)
|
||||||
|
|||||||
@@ -39,6 +39,11 @@ public class NetworkNodeCrafter extends NetworkNode implements ICraftingPatternC
|
|||||||
network.getCraftingManager().rebuild();
|
network.getCraftingManager().rebuild();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getSlotLimit(int slot) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private List<ICraftingPattern> actualPatterns = new ArrayList<>();
|
private List<ICraftingPattern> actualPatterns = new ArrayList<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user