Server Version: paper-1.21.1-130.jar , paper-1.21.1-128.jar
JDK: 21
I have tried three ways to create it but none of them worked and the error message shown in the picture appeared. Does anyone have a better way?
error log
JDK: 21
I have tried three ways to create it but none of them worked and the error message shown in the picture appeared. Does anyone have a better way?
error log
Java:
World world = player.getWorld();
Location location = player.getLocation();
BlockDisplay display = world.spawn(location, BlockDisplay.class);
// 1
display.setBlock(Material.END_CRYSTAL.createBlockData());
// 2
display.setBlock(Bukkit.createBlockData(Material.END_CRYSTAL));
// 3
BlockData blockData = player.getServer().createBlockData(Material.END_CRYSTAL);
display.setBlock(blockData);
- Version Output
- paper-1.21.1-130.jar, paper-1.21.1-128.jar