summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9719ba9..2c5e703 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ import ftbsc.lll.processor.annotations.*;
@Patch(value = Minecraft.class, reason = "crash the game as soon as it loads")
public class SamplePatch implements Opcodes {
@Target
- public void tick() {};
+ public void tick() {}; //stub representing the target method, its modifiers are irrelevant
@Injector
public static void yourCustomInjector(ClassNode clazz, MethodNode main) {
InsnList insnList = new InsnList();