NoNaturalBlockBreak
Disable natural block breaking
Quick challenge
How far can you run before the mobs catch you?
Rotate your phone
Dino Mine is ready when your screen is landscape.
Minecraft check
Confirm your run
Complete the quick check to get your code.
Your code
Expires in 5 hours
NoNaturalBlockBreak
This plugin disables natural block breaking, Like torches, buttons, pressure plates and plants without support blocks (To name but a few!)
> ⚠️ Using this in survival world is not recommended! It's supposed to be used on lobby servers that have illegal decoration blocks.
The code is super simple:
```java @EventHandler public void onBlockPhysics(BlockPhysicsEvent ev) { ev.setCancelled(true); } ```