Fast Block Place Mod 1.8.9 -

@Mod(modid = FastBlockPlaceMod.MODID, version = FastBlockPlaceMod.VERSION, clientSideOnly = true) public class FastBlockPlaceMod { public static final String MODID = "fastblockplace"; public static final String VERSION = "1.0"; public static Logger logger;

@Override public String getAccessTransformerClass() { return null; } } { "modid": "fastblockplace", "name": "Fast Block Place", "description": "Removes the delay between placing blocks. Place blocks as fast as you can click!", "version": "1.0", "mcversion": "1.8.9", "url": "", "updateUrl": "", "authorList": ["YourName"], "credits": "ASM Patch for 1.8.9", "logoFile": "", "screenshots": [], "dependencies": [] } 5. build.gradle (ForgeGradle Setup) buildscript { repositories { jcenter() maven { url = "https://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' } } apply plugin: 'net.minecraftforge.gradle.tweaker-client' apply plugin: 'java'

import java.util.logging.Logger;

private static class PatchClickBlock extends MethodVisitor { public PatchClickBlock(MethodVisitor mv) { super(Opcodes.ASM4, mv); }

@Override public void injectData(Map<String, Object> data) {} fast block place mod 1.8.9

@IFMLLoadingPlugin.MCVersion("1.8.9") public class Plugin implements IFMLLoadingPlugin { @Override public String[] getASMTransformerClass() { return new String[]{"com.example.fastblockplace.Transformer"}; }

dependencies { compile 'org.ow2.asm:asm-debug-all:5.0.3' } Create src/main/resources/META-INF/fastblockplace_at.cfg : @Mod(modid = FastBlockPlaceMod

private static final Logger LOGGER = Logger.getLogger("FastBlockPlace");

Still need help? Contact Us Contact Us