Fast Block Place Mod 1.8.9 Apr 2026
@Mod.EventHandler public void init(FMLInitializationEvent event) { logger.info("FastBlockPlace Mod enabled – block placing delay removed"); } } This patches net.minecraft.client.multiplayer.PlayerControllerMP method clickBlock to remove the 4 tick cooldown ( blockHitDelay ).
@Override public String getSetupClass() { return null; } fast block place mod 1.8.9
version = "1.0" group = "com.example.fastblockplace" archivesBaseName = "FastBlockPlace" fast block place mod 1.8.9
package com.example.fastblockplace; import net.minecraft.launchwrapper.IClassTransformer; import org.objectweb.asm.*; fast block place mod 1.8.9
dependencies { compile 'org.ow2.asm:asm-debug-all:5.0.3' } Create src/main/resources/META-INF/fastblockplace_at.cfg :
private static class PatchClickBlock extends MethodVisitor { public PatchClickBlock(MethodVisitor mv) { super(Opcodes.ASM4, mv); }