Futurepack Mod - Now with flyable Spaceships!

Futurepack Mod - Now with flyable Spaceships!

1M Downloads

[1.16.4] FTL blocks don't drop when broken

qrss opened this issue ยท 1 comments

commented

Forge version: 35.1.28
Futurepack version: 21.0.4

FTL Blocks don't drop when broken with a Composite Pickaxe.

I'm pretty sure they dropped when broken in an earlier version, so I'm reporting this as a bug.

FTL_break

commented

The loottable field in Block.Properties can be changed by .noDrops() permanently.
This is done in BlockHoldingTile Contructor, which removes loot from all later uses of the Block.Properties object.
*The fix is not universial since the line "super(hasNBTCustomDrops ? builder.noDrops() : builder);" from BlockHoldingTile is still able to corrupt Properties and assumes loot in passed Property is allways active.

@mcenderdragon you should find a solution for this