SpongePowered / SpongeAPI

A Minecraft plugin API
http://www.spongepowered.org/
MIT License
1.14k stars 342 forks source link

Add BlockType#hasBlockEntity #2462

Closed Lignium closed 11 months ago

Lignium commented 1 year ago

[SpongeAPI|Sponge]

There is currently no quick way in the API to check if a particular block type can contain block entity data. It's possible to iterate over BlockEntityTypes and check BlockEntityType#isValidBlock, but obviously that would be much slower than just checking instanceof behind the scenes. I propose to introduce such a method.