Skip to content

Commit eab8035

Browse files
authored
docs: update readme
1 parent 96c8be4 commit eab8035

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Finally, know that you can spare yourself some trouble, by using this [annotatio
3838
- If you are using our loader (see below), use intermediary (unreadable but unique) names in every place you are told to use a name - ModLauncher will do the rest.
3939
- If you are loading this through [Fabric-ASM](https://github.com/Chocohead/Fabric-ASM), use intermediary representation.
4040
* Use our [loader](https://github.com/zaaarf/lillero-loader/) that hooks into Forge's ModLauncher if you're writing a modern Forge mod.
41+
* Use our [Mixin plugin](https://github.com/zaaarf/lillero-mixin/) if you are constrained to an environment that bundles it (like Fabric).
4142
* Make sure to dunk on all the naysayers who tried to force you to use Mixin!
4243

4344
#### Example Minecraft patch
@@ -48,8 +49,8 @@ The following is an example patch, located at `src/main/java/example/patches/Sam
4849
public class SamplePatch implements IInjector {
4950
public String name() { return "SamplePatch"; }
5051
public String targetClass() { return "net.minecraft.client.Minecraft"; }
51-
public String methodName() { return "func_71407_l"; } //Searge name for tick()
52-
public String methodDesc() { return "()V"; } //void, no args
52+
public String methodName() { return "func_71407_l"; } // searge name for tick()
53+
public String methodDesc() { return "()V"; } // void, no args
5354
public void inject(ClassNode clazz, MethodNode main) {
5455
InsnList insnList = new InsnList();
5556
insnList.add(new InsnNode(POP));

0 commit comments

Comments
 (0)