-
Type:
New Feature
-
Resolution: Fixed
-
Priority:
Minor
-
None
-
Affects Version/s: None
-
3271-Spigot-3892929-cef1fda
-
Yes
It would be nice to have net.minecraft.world.level.block.state.BlockBase.BlockData#canPlace exposed in spigot's BlockData interface, this method is overriden by various blocks to determine if they can be placed at a certain location.
This would be a replacement for the following method that makes use of NMS to call canPlace.
public static boolean canPlace(BlockData data, Location location) { return ((CraftBlockData) data).getState().canPlace(((CraftWorld) location.getWorld()).getHandle(), new BlockPosition(location.getX(), location.getY(), location.getZ())); }