romelo333 / notenoughwands

This mod gives the player a number of very configurable and versatile wands
MIT License
7 stars 2 forks source link

MovingWand manually calls World#removeTileEntity before calling World#setBlockToAir #51

Open Aaron1011 opened 7 years ago

Aaron1011 commented 7 years ago

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.