diff --git a/build.gradle b/build.gradle index 5296e2f..b528fe9 100644 --- a/build.gradle +++ b/build.gradle @@ -41,10 +41,6 @@ dependencies { // devenv mods modRuntimeOnly "maven.modrinth:lazydfu:${project.lazydfu_version}" modRuntimeOnly "maven.modrinth:starlight:${project.starlight_version}" -// modRuntimeOnly "maven.modrinth:sodium:${project.sodium_version}" -// modRuntimeOnly include(fabricApi.module("fabric-rendering-data-attachment-v1", project.fabric_version)) -// modRuntimeOnly include(fabricApi.module("fabric-rendering-fluids-v1", project.fabric_version)) -// modRuntimeOnly include(fabricApi.module("fabric-resource-loader-v0", project.fabric_version)) modRuntimeOnly "maven.modrinth:lithium:${project.lithium_version}" modRuntimeOnly "maven.modrinth:spark:${project.spark_version}" modRuntimeOnly include(fabricApi.module("fabric-command-api-v2", project.fabric_version)) diff --git a/gradle.properties b/gradle.properties index 0b99bfb..af7fda7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,19 +3,18 @@ # Fabric Properties # check these on https://fabricmc.net/develop - minecraft_version=1.19.2 - loader_version=0.14.9 - fabric_version=0.60.0+1.19.2 + minecraft_version=1.19.3 + loader_version=0.14.11 + fabric_version=0.69.0+1.19.3 # Mod Properties mod_version = 1.0.0 - maven_group = com.example - archives_base_name = fabric-example-mod + maven_group = codes.ztereohype + archives_base_name = nicer-skies # Dependencies - modmenu_version = 4.0.6 + modmenu_version = 5.0.2 lazydfu_version = 0.1.3 starlight_version = 1.1.1+1.19 - lithium_version = mc1.19.2-0.8.3 - sodium_version = mc1.19.2-0.4.4 + lithium_version = mc1.19.3-0.10.4 spark_version = 1.9.26-fabric diff --git a/src/main/java/codes/ztereohype/nicerskies/gui/ConfigScreen.java b/src/main/java/codes/ztereohype/nicerskies/gui/ConfigScreen.java index ffeccd6..92fe1b3 100644 --- a/src/main/java/codes/ztereohype/nicerskies/gui/ConfigScreen.java +++ b/src/main/java/codes/ztereohype/nicerskies/gui/ConfigScreen.java @@ -139,7 +139,6 @@ public class ConfigScreen extends Screen { //reset to default addRenderableWidget(new Button(this.width / 2 + (this.width / 2 - 150) / 2 + 76, 156, 74, 20, Component.literal("Reset"), (button) -> { cm.resetNebulaSettings(); - // find better way to reload screen this.clearWidgets(); this.init(); invalidated = true;