File Details
pci_mini-0.1.9.35.jar
- R
- Mar 26, 2026
- 8.95 MB
- 15
- 1.21.11
- Forge
File Name
pci_mini-0.1.9.35.jar
Supported Versions
- 1.21.11
Curse Maven Snippet
📦 PCI-MINI – Storage System Fix (v0.1.9.35)
🔧 Fixed
- Fixed a critical issue where items could disappear when stack size exceeded 64.
- Removed unstable behavior caused by custom oversized stacks (>64) in
ItemStackHandler. - Improved SSD save/load reliability (no more corrupted or lost data).
- Fixed
takeItemAmountToCursorlogic (no more issues with full cursor stacks). - Corrected slot limit handling (
getMaxStackSize,getStackLimit).
⚙️ Changed
- Storage system now uses vanilla stack limit (64) instead of custom large stacks.
- Large quantities are automatically split into multiple stacks (e.g. 100 → 64 + 36).
- Reverted to standard Forge
ItemStackHandlerbehavior. - Removed custom “large stack handler”.
🧠 Technical Notes
- Previous system attempted to store >64 items using
ItemStack.count, which caused:- sync issues
- NBT data loss
- partial stack overwrites
- Current implementation:
- fully compatible with vanilla and Forge mechanics
- significantly more stable in testing
⚠️ Known Limitations
- Cannot store more than 64 items in a single slot (for now).
- Storage UI may show multiple stacks instead of a single combined quantity.
🚧 Planned
- “Virtual stack” system:
- one slot = one item type
- quantity stored separately (
virtual_count)
- Fully custom storage layer (no longer dependent on vanilla stack logic)
- UI improvements for displaying large quantities
💬 Summary
This update is a stability fix, not the final storage architecture.
The system is now reliable and ready for future improvements.

