-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blocks turn into shulkers #24
Comments
Hello.
|
1: 1.4 |
Which server software? Paper, Spigot... |
Too bad! I'm glad you found out. Maybe using Block Display Entities would work, you can try. If they work, I will start working on #19. |
for(Block block : getBlocksInRadius(l, radius)){
if(block.getType().equals(Material.DIAMOND_ORE)){
try {
glowingBlocks.setGlowing(block, p, ChatColor.AQUA);
} catch (ReflectiveOperationException e) {
throw new RuntimeException(e);
}
}
if(block.getType().equals(Material.COAL_ORE)){
try {
glowingBlocks.setGlowing(block, p, ChatColor.BLACK);
} catch (ReflectiveOperationException e) {
throw new RuntimeException(e);
}
}
}
https://prnt.sc/x-XTE7KCM6gj
The text was updated successfully, but these errors were encountered: