[1.14.4] Engineer's Crafting Table & Cloche do not drop contained Items when breaking.
TwistedGate opened this issue ยท 3 comments
Description of the issue:
Engineers crafting table and Cloche dont drop the items that were left inside of it.
Basicly voiding them.
Crashlog:
None.
Versions & Modlist
0.14-95 (Localy compiled at time of commit 69ad58a)
Crafting Table has not been registered for block drops. Easy fix.
@malte0811
The rest of this issue affects any of our blocks that have dummies. Workbench, Cloche, Turrets, etc. will not drop their inventory unless their master block is broken.
I see two possible solutions and want your input on a fix:
- We pull
master()
fromMultiblockPartTileEntity
up toIGeneralMultiblock
and check for that inDropInventoryLootEntry
- We override
IIEInventory.getDroppedItems()
for all of those Tiles
I would go with the first solution, I'm a bit surprised that we haven't had a reason to pull it up there before.