diff --git a/README.md b/README.md index 31423df..aac449b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Weather Changer Changes the weather on client side -Supports fabric 1.19+, forge support is coming soon!\ +Supports fabric 1.19.3+, forge support is coming soon!\ The fabric api is required. ## Links diff --git a/gradle.properties b/gradle.properties index 415842b..37f5cae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=1.19.2 -yarn_mappings=1.19.2+build.1 -loader_version=0.14.8 +minecraft_version=1.19.3 +yarn_mappings=1.19.3+build.1 +loader_version=0.14.11 # Mod Properties -mod_version = 0.1.0 +mod_version = 0.2.0 version = 0.1.0 maven_group = me.lucaslah archives_base_name = weather-changer # Dependencies -fabric_version=0.58.6+1.19.2 +fabric_version=0.68.1+1.19.3 diff --git a/src/main/java/me/lucaslah/weatherchanger/mixin/WorldMixin.java b/src/main/java/me/lucaslah/weatherchanger/mixin/WorldMixin.java index 176a3a5..0dce50a 100644 --- a/src/main/java/me/lucaslah/weatherchanger/mixin/WorldMixin.java +++ b/src/main/java/me/lucaslah/weatherchanger/mixin/WorldMixin.java @@ -2,9 +2,9 @@ import me.lucaslah.weatherchanger.WeatherChanger; import net.minecraft.client.world.ClientWorld; +import net.minecraft.registry.RegistryKey; +import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.util.profiler.Profiler; -import net.minecraft.util.registry.RegistryEntry; -import net.minecraft.util.registry.RegistryKey; import net.minecraft.world.MutableWorldProperties; import net.minecraft.world.World; import net.minecraft.world.dimension.DimensionType; diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 3d06b3c..72c0245 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -25,12 +25,13 @@ ] }, "mixins": [ - "mixins.json" + "weatherchanger.mixins.json" ], "depends": { "fabricloader": ">=0.14.6", - "minecraft": "~1.19", + "fabric-api": "*", + "minecraft": ">=1.19.3", "java": ">=17" } } diff --git a/src/main/resources/mixins.json b/src/main/resources/weatherchanger.mixins.json similarity index 100% rename from src/main/resources/mixins.json rename to src/main/resources/weatherchanger.mixins.json