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 last month
Updated last month
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);
}