diff --git a/.editorconfig b/.editorconfig index b722415..4ec6ab5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,6 +4,7 @@ indent_style = space insert_final_newline = true trim_trailing_whitespace = true indent_size = 4 +ij_continuation_indent_size = 4 [*.{json, yml}] indent_size = 2 diff --git a/.github/workflows/dev_build.yml b/.github/workflows/dev_build.yml index f58efd0..05f693a 100644 --- a/.github/workflows/dev_build.yml +++ b/.github/workflows/dev_build.yml @@ -7,8 +7,6 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 - - name: Wrapper Validation - uses: gradle/actions/wrapper-validation@v3 - name: Set up Java uses: actions/setup-java@v4 with: diff --git a/README.md b/README.md index c246d08..92043ce 100644 --- a/README.md +++ b/README.md @@ -79,3 +79,7 @@ Here is a brief explanation of the ones you might need to modify: You can edit this file to change the license of your addon. - `README.md`: Contains the documentation of the addon. You can edit this file to reflect the documentation of your addon, and showcase its features. + +## License + +This template is available under the CC0 license. Feel free to use it for your own projects. diff --git a/build.gradle b/build.gradle index 33ef2ca..8aab6ae 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id "fabric-loom" version "1.7-SNAPSHOT" + id "fabric-loom" version "1.8-SNAPSHOT" } base { diff --git a/gradle.properties b/gradle.properties index 891f0ca..d453565 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,9 @@ org.gradle.jvmargs=-Xmx2G # Fabric Properties (https://fabricmc.net/develop) -minecraft_version=1.21.1 -yarn_mappings=1.21.1+build.3 -loader_version=0.16.5 +minecraft_version=1.21.3 +yarn_mappings=1.21.3+build.2 +loader_version=0.16.9 # Mod Properties mod_version=0.1.0 @@ -13,4 +13,4 @@ archives_base_name=addon-template # Dependencies # Meteor (https://maven.meteordev.org) -meteor_version=0.5.8-SNAPSHOT +meteor_version=0.5.9-SNAPSHOT diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a441313..9355b41 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/main/java/com/example/addon/commands/CommandExample.java b/src/main/java/com/example/addon/commands/CommandExample.java index 06ec3ae..5b162e6 100644 --- a/src/main/java/com/example/addon/commands/CommandExample.java +++ b/src/main/java/com/example/addon/commands/CommandExample.java @@ -5,8 +5,6 @@ import meteordevelopment.meteorclient.commands.Command; import net.minecraft.command.CommandSource; -import static com.mojang.brigadier.Command.SINGLE_SUCCESS; - /** * The Meteor Client command API uses the same command system as Minecraft does. */