Compatibility
Minecraft: Java Edition
1.21–1.21.4
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed ARR
Published 2 months ago
Updated 2 months ago
This plugin disables natural block breaking, Like torches, buttons, pressure plates and plants without support blocks (To name but a few!)
The code is super simple:
@EventHandler
public void onBlockPhysics(BlockPhysicsEvent ev) {
ev.setCancelled(true);
}