On this line, World#removeTileEntity is called. This interferes with the method Block#breakBlock, which Vanilla calls before the tile entity has been removed. By removing the tile entity in advance, it will no longer be available to mods that override this method.
This issue ends up preventing blocks such as the Pedestel from the Reliquary mod from being picked up.
On this line,
World#removeTileEntity
is called. This interferes with the methodBlock#breakBlock
, which Vanilla calls before the tile entity has been removed. By removing the tile entity in advance, it will no longer be available to mods that override this method.This issue ends up preventing blocks such as the Pedestel from the Reliquary mod from being picked up.