From cad49095b4ab14f821910bcf0bcd477c7fa76dd6 Mon Sep 17 00:00:00 2001 From: zxq5 Date: Mon, 13 Jul 2026 23:33:37 +0100 Subject: [PATCH] README --- .gitignore | 2 +- README.md | 13 +++++-------- .../dev/zxq5/client/mixin/ExampleClientMixin.java | 2 +- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 8de4246..8287a60 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ build/ out/ classes/ -src/main/generated/ # eclipse @@ -39,3 +38,4 @@ hs_err_*.log replay_*.log *.hprof *.jfr +/src/main/generated/ diff --git a/README.md b/README.md index 53b93c2..d23b6ac 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,6 @@ -# fantasysmp +# FantasySMP -## Setup - -For setup instructions, please see the [Fabric Documentation page](https://docs.fabricmc.net/develop/getting-started/creating-a-project#setting-up) related to the IDE that you are using. - -## License - -This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects. +custom items mod. +as of writing this readme, includes: +- Witherite Gear +- Dragonite Gear \ No newline at end of file diff --git a/src/client/java/dev/zxq5/client/mixin/ExampleClientMixin.java b/src/client/java/dev/zxq5/client/mixin/ExampleClientMixin.java index 7e8c67c..4a3d156 100644 --- a/src/client/java/dev/zxq5/client/mixin/ExampleClientMixin.java +++ b/src/client/java/dev/zxq5/client/mixin/ExampleClientMixin.java @@ -10,6 +10,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; public class ExampleClientMixin { @Inject(at = @At("HEAD"), method = "run") private void init(CallbackInfo info) { - // This code is injected into the start of Minecraft.run()V + // This code is injected into the start of Minecraft.run() } } \ No newline at end of file