Move DO blocks to json loot tables
Nightenom opened this issue ยท 0 comments
Currently we override getDrops
for each block and read current world blockState + BE and save it to item stack
This behaviour however can be easily done through normal loottables, using CopyBlockState
and CopyNbtFunction.copyData(ContextNbtProvider.BLOCK_ENTITY)
This should also enable us to fix: door blocks dropping item in creative
(made issue cuz I've never touched loottables, just went around while debugging)