diff --git a/build.gradle b/build.gradle index 0b480cf..1dd18d1 100644 --- a/build.gradle +++ b/build.gradle @@ -15,12 +15,6 @@ dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - - // Fabric API. This is technically optional, but you probably want it anyway. - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - - // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. - // You may need to force-disable transitiveness on them. } processResources { diff --git a/gradle.properties b/gradle.properties index cfe9fec..1aa8f19 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,6 +9,3 @@ loader_version=0.10.0+build.208 mod_version=1.0 maven_group=io.gitlab.jfronny archives_base_name=Slyde -# Dependencies -# check this on https://modmuss50.me/fabric.html -fabric_version=0.22.1+build.409-1.16 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4e14e59..1d1cc23 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -7,7 +7,6 @@ "authors": [], "contact": {}, "license": "MIT", - "icon": "assets/Slyde/icon.png", "environment": "*", "entrypoints": { "client": [ @@ -19,7 +18,6 @@ ], "depends": { "fabricloader": ">=0.10.0+build.208", - "fabric": "*", - "minecraft": "1.16.3" + "minecraft": "*" } }