Fast Block Place Mod 1.8.9 May 2026
private static final Logger LOGGER = Logger.getLogger("FastBlockPlace");
dependencies { compile 'org.ow2.asm:asm-debug-all:5.0.3' } Create src/main/resources/META-INF/fastblockplace_at.cfg : fast block place mod 1.8.9
@Override public String getSetupClass() { return null; } private static final Logger LOGGER = Logger
This mod removes the delay between placing blocks, allowing you to place them as fast as you can click (limited only by the serverβs entity-action rate). It uses to patch the client-side PlayerControllerMP class, which is the most reliable method for 1.8.9. Project Structure FastBlockPlace/ βββ src/main/java/com/example/fastblockplace/ β βββ FastBlockPlaceMod.java β βββ Transformer.java β βββ Plugin.java βββ src/main/resources/ βββ mcmod.info 1. FastBlockPlaceMod.java β Core Mod Class package com.example.fastblockplace; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import org.apache.logging.log4j.Logger; fast block place mod 1.8.9