Currently it is only syncing hoppers when it receives an item from a below section ```kt /** Synchronize hopper pickups between sections */ @EventHandler(ignoreCancelled = true) fun InventoryPickupItemEvent.hopperGrabEvent() { inventory.location?.sync { _, corresponding, section, corrSection -> if (corrSection.isOnTopOf(section)) { //if there are no leftover items, remove the itemstack if ((corresponding.state as? Container)?.inventory?.addItem(item.itemStack)?.isEmpty() != false) item.remove() isCancelled = true } } } ``` there is probably a reason for this relating to chests etc but should probably get sorted https://github.com/user-attachments/assets/1aa16fa5-b517-4bb2-bed7-0fa0089f56ed
Currently it is only syncing hoppers when it receives an item from a below section
there is probably a reason for this relating to chests etc but should probably get sorted
Base.Profile.2024.07.23.-.16.39.37.02.1.mp4