Breaking PNC:R tile entities with autosmelt Tinker's pick smelts their contents
desht opened this issue ยท 0 comments
Created this to track TheLimePixel/Modern-Skyblock-3#366
Autosmelt tools should only smelt the block being broken, not the entires contents of the associated tile entity's inventory. Problem is PNC:R using Block#getDrops()
to get the inventory contents, when that should only be used for the block itself (and possible supplementary drops). Inventory contents should be dropped separately via Block#breakBlock()
, or Block#removedByPlayer()
for creative mode.