pcal43 / quicksort

Minecraft mod. Low-effort item sorting to keep your workshop organized.
https://modrinth.com/mod/quicksort
MIT License
7 stars 5 forks source link

Add support for expanded-enderchest "old" chest variants #54

Open ChristopherHaws opened 1 month ago

ChristopherHaws commented 1 month ago

Hey! Great idea for a mod! I would love it if support could be added for expanded-storage "old" chest variants:

https://github.com/quinn-semele/expanded-storage/blob/expandedstorage/1.21/common/src/main/java/compasses/expandedstorage/impl/block/entity/OldChestBlockEntity.java

Thanks!

pcal43 commented 1 month ago

It's a common and reasonable request. But unfortunately, it's the other way around: the other mods have to support quicksort by ensuring that their chest entities implement the standard net.minecraft.world.Container interface. (expanded-storage does not, AFAICT).

Otherwise, the quicksort code has no way of interacting with the other mod's chests.