
Poly/ItemSink does not sink nbt items correctly into Jabba Barrels/Caches
Nirek-K opened this issue ยท 6 comments
Attempting to sink nbt items (Forestry saplings, probably others) to a jabba barrel (also tried TE Caches) results in it thinking the inventory is full (switching to a basic pipe has the saplings go to the barrel and bounce) Providing and requesting does work.
It works as expected on both regular chests and storage Drawers.
Did a bit of testing, and removing these 2 checks: https://github.com/RS485/LogisticsPipes/blob/dev/common/logisticspipes/proxy/specialinventoryhandler/JABBAInventoryHandler.java#L124-L126
and https://github.com/RS485/LogisticsPipes/blob/dev/common/logisticspipes/proxy/specialinventoryhandler/JABBAInventoryHandler.java#L145-L147
allow sinking to jabba barrels to work properly. I don't know if this the correct fix as I don't know if it's needed for some other reason, but these snippets are the reason it does not work.
E: DSU handler also has this same check.
The reason for those checks was:
. At some point that changed but the check wasn't removed. Thanks for finding that.