Botania

Botania

133M Downloads

Weight Lens does not properly silk-drop Metamorphic Stone

codewarrior0 opened this issue ยท 1 comments

commented

Place a block of Metamorphic Stone above a block of air, above a torch. Fire a mana burst through a Weight Lens at the Stone, causing it to fall onto the torch and drop as an item. The resulting item is Metamorphic Cobblestone.

This seems to be because BlockBiomeStoneA::damageDropped converts the block's item damage to a cobble variety. This method is called both from Block::getDrops to yield the items dropped when broken normally, and from EntityFallingBlock::onUpdate in the case where the falling block removes itself and drops an item. This suggests a possible resolution of implementing BiomeBlockStoneA::getDrops to drop cobble varieties and changing damageDropped to no longer do so.

Botania+r1.10-354

commented